結果

問題 No.807 umg tours
ユーザー TlapesiumTlapesium
提出日時 2019-03-22 23:34:56
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 635 ms / 4,000 ms
コード長 1,068 bytes
コンパイル時間 3,837 ms
コンパイル使用メモリ 212,744 KB
実行使用メモリ 42,176 KB
最終ジャッジ日時 2024-11-23 19:11:12
合計ジャッジ時間 11,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 349 ms
32,448 KB
testcase_12 AC 350 ms
24,536 KB
testcase_13 AC 474 ms
33,440 KB
testcase_14 AC 200 ms
16,244 KB
testcase_15 AC 158 ms
13,568 KB
testcase_16 AC 495 ms
35,236 KB
testcase_17 AC 626 ms
40,880 KB
testcase_18 AC 617 ms
41,008 KB
testcase_19 AC 601 ms
39,372 KB
testcase_20 AC 359 ms
22,656 KB
testcase_21 AC 380 ms
23,424 KB
testcase_22 AC 147 ms
12,032 KB
testcase_23 AC 116 ms
10,112 KB
testcase_24 AC 347 ms
32,836 KB
testcase_25 AC 635 ms
42,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 2147483647
#define INF_LL 9223372036854775807
#define MOD 1000000007
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

struct edge {
	ll to;
	ll cost;
};
typedef pair<ll, ll> P;

int main() {
	int N, M;
	cin >> N >> M;
	vector<vector<edge>> G(N * 2, vector<edge>());
	vector<ll> d(N * 2, INF_LL);
	for (int i = 0; i < M; i++) {
		ll a, b, c;
		cin >> a >> b >> c;
		a--; b--;
		G[a].push_back({ b,c });
		G[b].push_back({ a,c });
		G[a].push_back({ b + N,0 });
		G[b].push_back({ a + N,0 });
		G[a + N].push_back({ b + N,c });
		G[b + N].push_back({ a + N,c });
	}
	priority_queue<P, vector<P>, greater<P>> q;
	d[0] = 0;
	q.push(P{ 0,0 });

	while (!q.empty()) {
		P p = q.top(); q.pop();
		ll v = p.second;
		if (d[v] < p.first)continue;
		for (int i = 0; i < G[v].size(); i++) {
			edge e = G[v][i];
			if (d[e.to] > d[v] + e.cost) {
				d[e.to] = d[v] + e.cost;
				q.push(P{ d[e.to] , e.to });
			}
		}
	}

	for (int i = 0; i < N; i++) {
		cout << min(d[i] + d[i + N], d[i] * 2) << endl;
	}
}
0