結果

問題 No.788 トラックの移動
ユーザー leaf_1415leaf_1415
提出日時 2019-02-08 22:30:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 1,513 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 69,912 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-05-08 22:56:29
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 425 ms
34,816 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 102 ms
15,232 KB
testcase_05 AC 419 ms
34,816 KB
testcase_06 AC 429 ms
34,816 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 101 ms
34,816 KB
testcase_16 AC 356 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#define llint long long
#define inf 1e18

using namespace std;

typedef pair<llint, llint> P;

struct edge{
	llint to, cost;
	edge(llint a, llint b){
		to = a, cost = b;
	}
};

llint n, m, l;
llint t[2005];
vector<edge> G[2005];
llint dist[2005][2005];

void dijkstra(llint S, llint dist[])
{
	for(int i = 1; i <= n; i++) dist[i] = inf;
	dist[S] = 0;
	
	priority_queue< P, vector<P>, greater<P> > Q;
	Q.push( make_pair(0, S) );
	
	llint v, d;
	while(Q.size()){
		d = Q.top().first;
		v = Q.top().second;
		Q.pop();
		if(dist[v] < d) continue;
		for(int i = 0; i < G[v].size(); i++){
			if(dist[G[v][i].to] > d + G[v][i].cost){
				dist[G[v][i].to] = d + G[v][i].cost;
				Q.push( make_pair(dist[G[v][i].to], G[v][i].to) );
			}
		}
	}
}

int main(void)
{
	cin >> n >> m >> l;
	for(int i = 1; i <= n; i++) cin >> t[i];
	
	llint u, v, w;
	for(int i = 0; i < m; i++){
		cin >> u >> v >> w;
		G[u].push_back(edge(v, w));
		G[v].push_back(edge(u, w));
	}
	
	int cnt = 0;
	for(int i = 1; i <= n; i++){
		if(t[i]) cnt++;
	}
	if(cnt == 1){
		cout << 0 << endl;
		return 0;
	}
	
	for(int i = 1; i <= n; i++) dijkstra(i, dist[i]);
	
	llint ans = inf;
	for(int i = 1; i <= n; i++){
		llint tmp = dist[l][i];
		for(int j = 1; j <= n; j++) tmp += t[j] * dist[i][j] * 2;
		
		llint mx = 0;
		for(int j = 1; j <= n; j++){
			if(t[j] == 0) continue;
			mx = max(mx, dist[l][i] + dist[i][j] - dist[l][j]);
		}
		ans = min(ans, tmp-mx);
	}
	cout << ans << endl;
	
	return 0;
}
0