1003. Emergency (25)

来源:互联网 发布:网络辱骂警察 编辑:程序博客网 时间:2024/06/03 06:02

1003. Emergency (25)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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

/*输入: 第一行:输入城市个数N(编号从0-(N-1)) ,总共M条路径,起点C1,终点C2第二行:输入N个数,依次表示每个城市的搜救队数目接下来M行,每行输入城市c1,城市c2,以及它们的举例L 输出:起点到终点的最短路径数目,最短路径中能够集合的最大搜救队数目 */ #include<iostream>#include<string.h> using namespace std;int max_rescue=0;int shortest_number=0;int shortest_distant=999999999;int map[500][500];int N,M,C1,C2;int rescue[500];int visit[500];void dfs(int c,int distant,int res){if(c==C2){if(distant<shortest_distant){shortest_number=1;shortest_distant=distant;max_rescue=res;//当最短距离更新时,最大搜救队数目一定要更新 }else if(distant==shortest_distant){shortest_number++;shortest_distant=distant;if(res>max_rescue)max_rescue=res;}return;}visit[c]=1;for(int i=0;i<N;i++){if(visit[i]==0&&map[c][i]>0){dfs(i,distant+map[c][i],res+rescue[i]);}}visit[c]=0;}int main(){memset(map,0,sizeof(map));memset(rescue,0,sizeof(rescue));memset(visit,0,sizeof(visit));cin>>N>>M>>C1>>C2;for(int i=0;i<N;i++){cin>>rescue[i];} for(int i=0;i<M;i++){int c1,c2,L;cin>>c1>>c2>>L;map[c2][c1]=map[c1][c2]=L;//无向图,所以构造map时,对应位置都是距离L }visit[C1]=1; dfs(C1,0,rescue[C1]);cout<<shortest_number<<" "<<max_rescue<<endl;return 0;} 


0 0