problem

  1. 1003 Emergency (25)(25 point(s))
  2. 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.
  3. Input
  4. Each input file contains one test case. For each test case, the first line contains 4 positive integers: N (<= 500) - the number of cities (and the cities are numbered from 0 to N-1), M - the number of roads, C1 and C2 - the cities that you are currently in and that you must save, respectively. The next line contains N integers, where the i-th integer is the number of rescue teams in the i-th city. Then M lines follow, each describes a road with three integers c1, c2 and L, which are the pair of cities connected by a road and the length of that road, respectively. It is guaranteed that there exists at least one path from C1 to C2.
  5. Output
  6. 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.
  7. Sample Input
  8. 5 6 0 2
  9. 1 2 1 5 3
  10. 0 1 1
  11. 0 2 2
  12. 0 3 1
  13. 1 2 1
  14. 2 4 1
  15. 3 4 1
  16. Sample Output
  17. 2 4

anwser

  1. Dijkstra 解法
  2. #include<bits/stdc++.h>
  3. #define INF 0x3f3f3f3f
  4. #define Max 511
  5. int N, M, C1, C2;
  6. int Rescue[Max], Map[Max][Max], Dis[Max], Pre[Max], W[Max], Diff[Max];
  7. bool Vis[Max] = {false};
  8. void Dijkstra(int s){
  9. memset(Dis, INF, sizeof(Dis));
  10. memset(W, 0, sizeof(W));
  11. memset(Diff, 0, sizeof(Diff));
  12. Dis[s] = 0;
  13. W[s] = Rescue[s];
  14. Diff[s] = 1;
  15. for(int i = 0; i < N; i++) Pre[i] = i;
  16. for(int i = 0; i < N; i++){
  17. int u = 0, minn = INF;
  18. for(int j = 0; j < N; j++){
  19. if(!Vis[j] && Dis[j] < minn){
  20. u = j;
  21. minn = Dis[j];
  22. }
  23. }
  24. if(u == C2 || minn == INF) return;
  25. Vis[u] = true;
  26. for(int v = 0; v < N; v++) {
  27. if(!Vis[v]) {
  28. if(Dis[u] + Map[u][v] < Dis[v]){
  29. Dis[v] = Dis[u] + Map[u][v];
  30. // Pre[v] = u;
  31. // }
  32. W[v] = W[u] + Rescue[v];
  33. Diff[v] = Diff[u];
  34. }else if (Dis[u] + Map[u][v] == Dis[v]){
  35. Diff[v] += Diff[u];
  36. if(W[u] + Rescue[v] > W[v]){
  37. W[v] = W[u] + Rescue[v];
  38. // Pre[v] = u;
  39. }
  40. }
  41. }
  42. }
  43. }
  44. }
  45. int main(){
  46. // freopen("test.txt", "r", stdin);
  47. memset(Map, INF, sizeof(Map));
  48. std::cin>>N>>M>>C1>>C2;
  49. for(int i = 0; i < N; i++){
  50. std::cin>>Rescue[i];
  51. }
  52. for(int i = 0; i < M; i++){
  53. int c1, c2, L;
  54. std::cin>>c1>>c2>>L;
  55. Map[c1][c2] = Map[c2][c1] = L;
  56. }
  57. Dijkstra(C1);
  58. std::cout<<Diff[C2]<<" "<<W[C2];
  59. return 0;
  60. }
  61. /*
  62. 5 6 0 2
  63. 1 2 1 5 3
  64. 0 1 1
  65. 0 2 2
  66. 0 3 1
  67. 1 2 1
  68. 2 4 1
  69. 3 4 1
  70. */
  1. DFS解法
  2. #include<bits/stdc++.h>
  3. #include<vector>
  4. #define INF 0x3f3f3f3f
  5. #define Max 511
  6. int N, M, C1, C2;
  7. int Rescue[Max], Map[Max][Max], Dis[Max], Pre[Max], W[Max], Diff[Max];
  8. bool Vis[Max] = {false};
  9. void Dijkstra(int s){
  10. memset(Dis, INF, sizeof(Dis));
  11. memset(W, 0, sizeof(W));
  12. memset(Diff, 0, sizeof(Diff));
  13. Dis[s] = 0;
  14. W[s] = Rescue[s];
  15. Diff[s] = 1;
  16. for(int i = 0; i < N; i++) Pre[i] = i;
  17. for(int i = 0; i < N; i++){
  18. int u = 0, minn = INF;
  19. for(int j = 0; j < N; j++){
  20. if(!Vis[j] && Dis[j] < minn){
  21. u = j;
  22. minn = Dis[j];
  23. }
  24. }
  25. if(u == C2 || minn == INF) return;
  26. Vis[u] = true;
  27. for(int v = 0; v < N; v++) {
  28. if(!Vis[v]) {
  29. if(Dis[u] + Map[u][v] < Dis[v]){
  30. Dis[v] = Dis[u] + Map[u][v];
  31. W[v] = W[u] + Rescue[v];
  32. Diff[v] = Diff[u];
  33. }else if (Dis[u] + Map[u][v] == Dis[v]){
  34. Diff[v] += Diff[u];
  35. if(W[u] + Rescue[v] > W[v]){
  36. W[v] = W[u] + Rescue[v];
  37. }
  38. }
  39. }
  40. }
  41. }
  42. }
  43. int minDis = INF, diff = 0, maxTeam = 0, vis[Max];
  44. void DFS(int v, int dis, int team){
  45. if(v == C2){
  46. if(dis < minDis)
  47. {
  48. minDis = dis;
  49. diff = 1;
  50. maxTeam = team;
  51. }else if(dis == minDis){
  52. diff++;
  53. if(team > maxTeam) maxTeam = team;
  54. }
  55. // std::cout<<team<<std::endl;
  56. return ;
  57. }
  58. vis[v] = 1;
  59. for(int i = 0; i < N; i++)
  60. if(vis[i] == 0 && Map[v][i] != INF)
  61. DFS(i, dis + Map[v][i], team + Rescue[i]);
  62. vis[v] = 0;
  63. }
  64. int main(){
  65. // freopen("test.txt", "r", stdin);
  66. memset(Map, INF, sizeof(Map));
  67. memset(vis, 0, sizeof(vis));
  68. std::cin>>N>>M>>C1>>C2;
  69. for(int i = 0; i < N; i++){
  70. std::cin>>Rescue[i];
  71. }
  72. for(int i = 0; i < M; i++){
  73. int c1, c2, L;
  74. std::cin>>c1>>c2>>L;
  75. Map[c1][c2] = Map[c2][c1] = L;
  76. }
  77. // Dijkstra(C1);
  78. // std::cout<<Diff[C2]<<" "<<W[C2];
  79. DFS(C1, 0, Rescue[C1]);
  80. std::cout<<diff<<" "<<maxTeam;
  81. return 0;
  82. }
  83. /*
  84. 5 6 0 2
  85. 1 2 1 5 3
  86. 0 1 1
  87. 0 2 2
  88. 0 3 1
  89. 1 2 1
  90. 2 4 1
  91. 3 4 1
  92. */

experience

  • 注意审题,求的不是最短路,是最短路的不同路条数。
  • 这个图不是单向图,是双向图。
  • Dijkstra算法以及其变种需要熟悉。

    单词复习
  • scattered 分散的

1003 Emergency (25)(25 point(s))的更多相关文章

  1. MySQL5.7.25(解压版)Windows下详细的安装过程

    大家好,我是浅墨竹染,以下是MySQL5.7.25(解压版)Windows下详细的安装过程 1.首先下载MySQL 推荐去官网上下载MySQL,如果不想找,那么下面就是: Windows32位地址:点 ...

  2. PAT 甲级 1006 Sign In and Sign Out (25)(25 分)

    1006 Sign In and Sign Out (25)(25 分) At the beginning of every day, the first person who signs in th ...

  3. 【PAT】1020 Tree Traversals (25)(25 分)

    1020 Tree Traversals (25)(25 分) Suppose that all the keys in a binary tree are distinct positive int ...

  4. 【PAT】1052 Linked List Sorting (25)(25 分)

    1052 Linked List Sorting (25)(25 分) A linked list consists of a series of structures, which are not ...

  5. 【PAT】1060 Are They Equal (25)(25 分)

    1060 Are They Equal (25)(25 分) If a machine can save only 3 significant digits, the float numbers 12 ...

  6. 【PAT】1032 Sharing (25)(25 分)

    1032 Sharing (25)(25 分) To store English words, one method is to use linked lists and store a word l ...

  7. 【PAT】1015 德才论 (25)(25 分)

    1015 德才论 (25)(25 分) 宋代史学家司马光在<资治通鉴>中有一段著名的“德才论”:“是故才德全尽谓之圣人,才德兼亡谓之愚人,德胜才谓之君子,才胜德谓之小人.凡取人之术,苟不得 ...

  8. 1002 A+B for Polynomials (25)(25 point(s))

    problem 1002 A+B for Polynomials (25)(25 point(s)) This time, you are supposed to find A+B where A a ...

  9. PAT 甲级 1010 Radix (25)(25 分)进制匹配(听说要用二分,历经坎坷,终于AC)

    1010 Radix (25)(25 分) Given a pair of positive integers, for example, 6 and 110, can this equation 6 ...

随机推荐

  1. HDU 4370 0 or 1 (最短路)

    [题目链接](http://acm.hdu.edu.cn/showproblem.ph Problem Description Given a n/n matrix Cij (1<=i,j< ...

  2. numpy 矩阵操作

    numpy 对矩阵对角线.上三角.下三角以及它们所在位置索引的提取 import numpy as np a = np.random.randint(0,10,[5,5]) print(a) # c ...

  3. JQuery获取被选中的checkbox的value值

    文章源头:http://www.cnblogs.com/td960505/p/6123510.html 以下为使用JQuery获取input checkbox被选中的值代码: <html> ...

  4. Sort Colors I & II

    Given an array with n objects colored red, white or blue, sort them so that objects of the same colo ...

  5. HDU 6212 Zuma 2017青岛网络赛 区间DP

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=6212 解法:看了眼题就发现这个BZOJ 1032不是一毛一样?但是BZOJ上那是个巨坑,数据有错,原来 ...

  6. jquery记忆笔记

    1.javascript需要注意的一些问题: ①不要使用==比较,始终坚持使用===比较. false == 0; // true false === 0; // false ②NaN这个特殊的Num ...

  7. 一文看懂python主要应用领域或应用场景

    Python简介 Python(英国发音:/ˈpaɪθən/美国发音:/ˈpaɪθɑːn/),是一种面向对象的解释型计算机程序设计语言,由荷兰人GuidovanRossum于1989年发明,第一个公开 ...

  8. scala tuple中的syntactic sugar

    List[Tuple2[String, Int]] // Base List[(String, Int)] // Syntactic sugar List[Tuple3[String, Float, ...

  9. SQL-如果指定值存在返回1,如果不存在返回0的SQL语句

    想实现简单的判断一个表中是否有一条记录,可以用这个方式.如以下,table_name是表名,column1是列名. 这条语句会在此条记录存在的时候返回1,不存在时返回0. FROM table_nam ...

  10. 【转】shell命令中>/dev/null 2>&1的实现原理

    异步执行 exec("/alidata/server/php/bin/php /nas/wxdoctor/index.php App/Common/WordsPic/user_id/&quo ...