POJ 1511 Invitation Cards(最短路spfa算法)

Invitation Cards
Time Limit: 8000MS      Memory Limit: 262144K
Total Submissions: 21615       Accepted: 7089

Description
In the age of television, not many people attend theater performances. Antique Comedians of Malidinesia are aware of this fact. They want to propagate theater and, most of all, Antique Comedies. They have printed invitation cards with all the necessary information and with the programme. A lot of students were hired to distribute these invitations among the people. Each student volunteer has assigned exactly one bus stop and he or she stays there the whole day and gives invitation to people travelling by bus. A special course was taken where students learned how to influence people and what is the difference between influencing and robbery.


The transport system is very special: all lines are unidirectional and connect exactly two stops. Buses leave the originating stop with passangers each half an hour. After reaching the destination stop they return empty to the originating stop, where they wait until the next full half an hour, e.g. X:00 or X:30, where 'X' denotes the hour. The fee for transport between two stops is given by special tables and is payable on the spot. The lines are planned in such a way, that each round trip (i.e. a journey starting and finishing at the same stop) passes through a Central Checkpoint Stop (CCS) where each passenger has to pass a thorough check including body scan.


All the ACM student members leave the CCS each morning. Each volunteer is to move to one predetermined stop to invite passengers. There are as many volunteers as stops. At the end of the day, all students travel back to CCS. You are to write a computer program that helps ACM to minimize the amount of money to pay every day for the transport of their employees.

Input
The input consists of N cases. The first line of the input contains only positive integer N. Then follow the cases. Each case begins with a line containing exactly two integers P and Q, 1 <= P,Q <= 1000000. P is the number of stops including CCS and Q the number of bus lines. Then there are Q lines, each describing one bus line. Each of the lines contains exactly three numbers - the originating stop, the destination stop and the price. The CCS is designated by number 1. Prices are positive integers the sum of which is smaller than 1000000000. You can also assume it is always possible to get from any stop to any other stop.

Output
For each case, print one line containing the minimum amount of money to be paid each day by ACM for the travel costs of its volunteers.

Sample Input
2
2 2
1 2 13
2 1 33
4 6
1 2 10
2 1 60
1 3 20
3 4 10
2 4 5
4 1 50

Sample Output
46
210

题意:给出n个点和m条边,求起始点1到各点一个来回的最短距离之和,,
思路:先算从1点到每个点的最短路径,然后将每个边的起点和终点交换,在求一遍最短路径,两者之和就是一个来回的最短路径。。如此大的数据,一般的Floyd、Dijkstra、Bellman ford是解决不了的,于是在网上学了一个叫spfa(队列优化)的算法,请点击:spfa算法详解 其本质就是维护一个队列,当队列非空的时候不断进行松弛操作(就是找最短),最后当队列为空时,最后的结果就是最短路径。
而且这个题只能用邻接表存储,用Vector的话也只能用一个邻接表,两个邻接表存储会超时,,,

以下AC代码:
[cpp]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. #include<stdio.h>  
  2. #include<string.h>  
  3. #include<vector>  
  4. #include<queue>  
  5. #define ll long long  
  6. #define N 1000005  
  7. #define INF 0xFFFFFFFF  
  8. using namespace std;  
  9. struct node{  
  10.     int start;  
  11.     int end; ///边的末端顶点  
  12.     int v;  ///边的权值  
  13. }nn[N];  
  14. vector <node> p[N];  
  15. ll d[N];  
  16. int vis[N];  
  17. int m,n;  
  18. ll spfa(){  
  19.     ll i;  
  20.     memset(vis,0,sizeof(vis));  
  21.     for(i=2;i<=n;i++)  
  22.         d[i]=INF;  
  23.         d[1]=0;  
  24.     queue<int> q;  
  25.     q.push(1);  
  26.     while(!q.empty()){  
  27.         int tmp=q.front();  
  28.         q.pop();  
  29.         vis[tmp]=0;  
  30.         for(i=0;i<p[tmp].size();i++){  
  31.             int v=p[tmp][i].v; ///与tmp相连的第i个节点之间的权值  
  32.             int end=p[tmp][i].end; ///与tmp相连的第i个节点的节点值  
  33.             if(d[end]>d[tmp]+v){  
  34.                 d[end]=d[tmp]+v;  
  35.                 if(!vis[end]){///如果队列中没有,加入队列  
  36.                     q.push(end);  
  37.                     vis[end]=1;  
  38.                 }  
  39.             }  
  40.   
  41.         }  
  42.     }  
  43.   
  44.     ll sum=0;  
  45.     for(i=1;i<=n;i++){  
  46.         sum+=d[i];  
  47.     }  
  48.     return sum;  
  49.   
  50. }  
  51.   
  52. int main(){  
  53.     ll i;  
  54.     int t;  
  55.     scanf("%d",&t);  
  56.     while(t--){  
  57.   
  58.   
  59.         scanf("%d%d",&n,&m);  
  60.         for(i=0;i<=n;i++){  
  61.                 p[i].clear();  
  62.         }  
  63.         for(i=1;i<=m;i++){///建邻接表  
  64.             scanf("%d%d%d",&nn[i].start,&nn[i].end,&nn[i].v);  
  65.             node no;  
  66.             no.end=nn[i].end;  
  67.             no.v=nn[i].v;  
  68.             p[nn[i].start].push_back(no);  
  69.         }  
  70.   
  71.         ll minsum=spfa();  
  72.          for(i=0;i<=n;i++){  
  73.                 p[i].clear();  
  74.         }  
  75.         for(i=1;i<=m;i++){///交换顶点后重新建邻接表  
  76.                 node nod;  
  77.                 nod.end=nn[i].start;  
  78.                 nod.v=nn[i].v;  
  79.                 p[nn[i].end].push_back(nod);  
  80.         }  
  81.         minsum+=spfa();  
  82.         printf("%I64d\n",minsum);  
  83.     }  
  84.     return 0;  
  85. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值