A1003 Emergency (25 分)

#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <vector>
#include <queue>
using namespace std;
const int inf = 1000000;
const int maxn = 510;
int N, M, c1, c2;
int cost[maxn][maxn], team[maxn]; 
int used[maxn], dis[maxn]; 
int road[maxn], gather[maxn];
void init(){
	fill(cost[0], cost[0] + maxn * maxn, inf);
	fill(dis, dis + maxn, inf);
	memset(road, 0, sizeof(road));
	memset(gather, 0, sizeof(gather));
}
void dijkstra(){	
	dis[c1] = 0;
	road[c1] = 1;
	gather[c1] = team[c1];
	for(int i = 0; i < N; i++){
		int u = -1, Min = inf; 
		for(int v = 0; v < N; v++){
			if(used[v] == 0 && dis[v] < Min){
				Min = dis[v]; u = v;
			}
		}
		if(u == -1) break;
		used[u] = 1;				
		for(int v = 0; v < N; v++){
			if(used[v] == 0 && cost[u][v] != inf){
				if(dis[v] > dis[u] + cost[u][v]){
					dis[v] = dis[u] + cost[u][v];	
					road[v] = road[u];
					gather[v] = gather[u] + team[v];
				}else if(dis[v] == dis[u] + cost[u][v]){
					road[v] += road[u];
					gather[v] = max(gather[v], gather[u] + team[v]);
				}				
			}
		}
		if(u == c2) break;		
	}	
	printf("%d %d\n", road[c2], gather[c2]);
}
int main(){
	init();
	scanf("%d %d %d %d", &N, &M, &c1, &c2);
	for(int i = 0; i < N; i++){
		scanf("%d", &team[i]);
	}
	int x, y, w;	
	for(int i = 0; i < M; i++){
		scanf("%d %d %d", &x, &y, &w);
		cost[x][y] = cost[y][x] = w;
	}
	dijkstra();
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值