Home Database Mysql Tutorial PAT1003Emergency (25)

PAT1003Emergency (25)

Jun 07, 2016 pm 02:50 PM

As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and the length of each road between any pair of

As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and the length of each road between any pair of cities are marked on the map. When there is an emergency call to you from some other city, your job is to lead your men to the place as quickly as possible, and at the mean time, call up as many hands on the way as possible.

Input

Each input file contains one test case. For each test case, the first line contains 4 positive integers: N (

Output

For each test case, print in one line two numbers: the number of different shortest paths between C1 and C2, and the maximum amount of rescue teams you can possibly gather.
All the numbers in a line must be separated by exactly one space, and there is no extra space allowed at the end of a line.
Sample Input5 6 0 2
1 2 1 5 3
0 1 1
0 2 2
0 3 1
1 2 1
2 4 1
3 4 1

Sample Output2 4

<code class=" hljs cpp"><span class="hljs-keyword">const</span> <span class="hljs-keyword">int</span> maxn = <span class="hljs-number">510</span>;
<span class="hljs-keyword">int</span> ans, n, m, s, t, v[maxn], dis[maxn], mapPA[maxn][maxn], x, y, z, vis[maxn];
<span class="hljs-keyword">long</span> <span class="hljs-keyword">long</span> cnt[maxn];
<span class="hljs-comment">//n-城市数量,m-道路数量,s-起点,t-终点</span>
<span class="hljs-keyword">void</span> dfs(<span class="hljs-keyword">int</span> x, <span class="hljs-keyword">int</span> y, <span class="hljs-keyword">int</span> z){
    ans = max(ans, z);
    <span class="hljs-keyword">if</span> (x == y || dis[x] == -<span class="hljs-number">1</span>)<span class="hljs-keyword">return</span>;
    <span class="hljs-keyword">for</span> (<span class="hljs-keyword">int</span> i = <span class="hljs-number">0</span>; i < n; ++i){
        <span class="hljs-keyword">if</span> (mapPA[x][i] != -<span class="hljs-number">1</span> && dis[x] == dis[i] + mapPA[x][i]){
            dfs(i, y, z + v[i]);
        }
    }
    dis[x] = -<span class="hljs-number">1</span>;
}
<span class="hljs-keyword">void</span> PAT1003A(){
    <span class="hljs-built_in">cin</span> >> n >> m >> s >> t;
    <span class="hljs-keyword">for</span> (<span class="hljs-keyword">int</span> i = <span class="hljs-number">0</span>; i < n; ++i)<span class="hljs-built_in">cin</span> >> v[i];
    <span class="hljs-built_in">memset</span>(mapPA, -<span class="hljs-number">1</span>, <span class="hljs-keyword">sizeof</span>(mapPA));
    <span class="hljs-built_in">memset</span>(dis, -<span class="hljs-number">1</span>, <span class="hljs-keyword">sizeof</span>(dis));
    <span class="hljs-keyword">while</span> (m--){
        <span class="hljs-built_in">cin</span> >> x >> y >> z;
        mapPA[x][y] = mapPA[y][x] = z;
    }
    dis[s] = <span class="hljs-number">0</span>; cnt[s] = <span class="hljs-number">1</span>;
    <span class="hljs-keyword">while</span> (<span class="hljs-keyword">true</span>){
        <span class="hljs-keyword">int</span> now = -<span class="hljs-number">1</span>;
        <span class="hljs-keyword">for</span> (<span class="hljs-keyword">int</span> i = <span class="hljs-number">0</span>; i < n; ++i){
            <span class="hljs-keyword">if</span> (now == -<span class="hljs-number">1</span>)now = i; <span class="hljs-keyword">else</span> now = dis[now] < dis[i] ? now : i;
        }
        <span class="hljs-keyword">if</span> (now == -<span class="hljs-number">1</span>)<span class="hljs-keyword">break</span>;
        vis[now] = <span class="hljs-number">1</span>;
        <span class="hljs-keyword">for</span> (<span class="hljs-keyword">int</span> i = <span class="hljs-number">0</span>; i < n; ++i)
        {
            <span class="hljs-keyword">if</span> (mapPA[now][i] != -<span class="hljs-number">1</span>){
                <span class="hljs-keyword">if</span> (dis[i] == -<span class="hljs-number">1</span> || dis[i] > dis[now] + mapPA[now][i]){ 
                    dis[i] = dis[now] + mapPA[now][i];
                    cnt[i] = cnt[now];
                }
                <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (dis[i] == dis[now] + mapPA[now][i])cnt[i] += cnt[now];
            }
        }
    }
    dfs(t, s, v[t]);
    <span class="hljs-built_in">cout</span> << cnt[t] << ans;
}
</code>
Copy after login

方法二:only 深搜

<code class=" hljs cpp"><span class="hljs-comment">//深搜+回溯</span>
<span class="hljs-preprocessor">#define N 505</span>
<span class="hljs-keyword">int</span> n, m, s, e;
<span class="hljs-keyword">int</span> team[N];
<span class="hljs-keyword">int</span> numDis, minDis, maxTeam;
<span class="hljs-keyword">int</span> vis[N];
<span class="hljs-keyword">int</span> matrix[N][N];
<span class="hljs-stl_container"><span class="hljs-built_in">vector</span><<span class="hljs-keyword">int</span>></span>path;
<span class="hljs-keyword">void</span> DFS(<span class="hljs-keyword">int</span> next){
    <span class="hljs-keyword">int</span> i;
    <span class="hljs-keyword">if</span> (next == e){
        <span class="hljs-keyword">int</span> curTeam = <span class="hljs-number">0</span>, curDis = <span class="hljs-number">0</span>;
        <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < path.size(); ++i){
            curTeam += team[path[i]];
        }
        <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < path.size() - <span class="hljs-number">1</span>; ++i){
            curDis += matrix[path[i]][path[i + <span class="hljs-number">1</span>]];
        }
        <span class="hljs-keyword">if</span> (curDis < minDis){
            numDis = <span class="hljs-number">1</span>;
            minDis = curDis;
            maxTeam = curTeam;
        }
        <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (curDis == minDis){
            numDis++;
            <span class="hljs-keyword">if</span> (curTeam > maxTeam)maxTeam = curTeam;
        }
        <span class="hljs-keyword">return</span>;
    }

    <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < n; ++i){
        <span class="hljs-keyword">if</span> (matrix[next][i] != -<span class="hljs-number">1</span>){
            <span class="hljs-keyword">if</span> (!vis[i])
            {
                vis[i] = <span class="hljs-number">1</span>;
                path.push_back(i);
                DFS(i);
                path.pop_back();
                vis[i] = <span class="hljs-number">0</span>;
            }
        }
    }
}
<span class="hljs-keyword">void</span> PAT1003A(){
    <span class="hljs-keyword">int</span> i, a, b, d, j;
    <span class="hljs-keyword">while</span> (<span class="hljs-built_in">cin</span> >> n >> m >> s >> e)
    {
        <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < n; i++, matrix[i][i] = <span class="hljs-number">0</span>, vis[i] = <span class="hljs-number">0</span>)
        {
            <span class="hljs-keyword">for</span> (j = <span class="hljs-number">0</span>; j < n; j++)
            {
                matrix[i][j] = -<span class="hljs-number">1</span>;
            }
        }
        <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < n; i++)
        {
            <span class="hljs-built_in">cin</span> >> team[i];
        }
        <span class="hljs-keyword">for</span> (i = <span class="hljs-number">0</span>; i < m; i++)
        {
            <span class="hljs-built_in">cin</span> >> a >> b >> d;
            matrix[a][b] = matrix[b][a] = d;
        }

        path.clear();
        numDis = <span class="hljs-number">0</span>;
        minDis = <span class="hljs-number">0x7fffffff</span>;
        maxTeam = -<span class="hljs-number">1</span>;

        <span class="hljs-comment">//开始</span>
        vis[s] = <span class="hljs-number">1</span>;
        path.push_back(s);
        DFS(s);
        path.pop_back();
        vis[s] = <span class="hljs-number">0</span>;
            <span class="hljs-built_in">cout</span> << numDis << <span class="hljs-string">" "</span> << maxTeam << endl;


}</code>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

How do you handle large datasets in MySQL? How do you handle large datasets in MySQL? Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

How do you drop a table in MySQL using the DROP TABLE statement? How do you drop a table in MySQL using the DROP TABLE statement? Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you represent relationships using foreign keys? How do you represent relationships using foreign keys? Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do you create indexes on JSON columns? How do you create indexes on JSON columns? Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles