博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1003 Emergency
阅读量:5096 次
发布时间:2019-06-13

本文共 2842 字,大约阅读时间需要 9 分钟。

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 (<= 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.

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 Input

5 6 0 21 2 1 5 30 1 10 2 20 3 11 2 12 4 13 4 1

Sample Output

2 4 我觉得我好笨,这个题目我本来以为很简单的结果写的时候才发现我这个渣渣; 我连for都写错了  天哪   调试半天才发现  太久没写代码了 然后我起初用的是队列  因为我大概在脑子里过了一遍就是取出从前到后不会对新值有影响,以为不会出现在后面更新了最短路条数更新的情况 我错了  我想成bfs了 这里还要加一个dis 做成优先队列  叹气
#include
#include
#include
#include
#include
using namespace std;int Len,head[505],vis[505],dis[505],dp[505],sum[505],num[505],a[505];int N,M,C1,C2;struct Data{int next,to,w;}data[12505];const int MAX=0xffffff;struct number1{ int x,y; bool operator < (const number1 &a) const { return x>a.x;//最小值优先 } }; void add_Edge(int a,int b,int c){ data[Len].to=b; data[Len].w=c; data[Len].next=head[a]; head[a]=Len; Len++;}void Read(){ for(int i=0;i
q; //queue
q; number1 k; k.x=dis[C1]; k.y=C1; q.push(k); while(!q.empty()) { k=q.top(); q.pop(); int u=k.y; if(vis[u])continue; vis[u]=1; for(int i=head[u];i!=-1;i=data[i].next) { int v=data[i].to; if(dis[v]>dis[u]+data[i].w) { dp[v]=dp[u]; dis[v]=dis[u]+data[i].w; sum[v]=sum[u]+num[v]; k.x=dis[v]; k.y=v; q.push(k); } else if(dis[v]==dis[u]+data[i].w) { dp[v]+=dp[u]; sum[v]=max(sum[v],sum[u]+num[v]); } } } printf("%d %d\n",dp[C2],sum[C2]);}int main(){ while(~scanf("%d%d%d%d",&N,&M,&C1,&C2)) { init(); Read(); Solve(); }}

  

转载于:https://www.cnblogs.com/newadi/p/5095351.html

你可能感兴趣的文章
Floyd算法 - 最短路径
查看>>
【转载】基于vw等viewport视区相对单位的响应式排版和布局
查看>>
<转>关于MFC的多线程类 CSemaphore,CMutex,CCriticalSection,CEvent
查看>>
《你们都是魔鬼吗》实验十二 团队作业八:Alpha冲刺
查看>>
jquery中ajax返回值无法传递到上层函数
查看>>
[Leetcode]942. DI String Match
查看>>
css3之transform-origin
查看>>
1003 Emergency
查看>>
bm25
查看>>
[转]JavaScript快速检测浏览器对CSS3特性的支持
查看>>
Master选举原理
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
小别离
查看>>
微信小程序-发起 HTTPS 请求
查看>>
WPF动画设置1(转)
查看>>
backgound-attachment属性学习
查看>>
个人作业——关于K米的产品案例分析
查看>>
基于node/mongo的App Docker化测试环境搭建
查看>>
java web 中base64传输的坑
查看>>
java 中的线程(一)
查看>>