結果

問題 No.807 umg tours
ユーザー TlapesiumTlapesium
提出日時 2019-03-22 23:34:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 633 ms / 4,000 ms
コード長 1,068 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 213,112 KB
実行使用メモリ 42,304 KB
最終ジャッジ日時 2024-05-02 23:33:53
合計ジャッジ時間 10,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 355 ms
32,576 KB
testcase_12 AC 348 ms
24,536 KB
testcase_13 AC 482 ms
33,308 KB
testcase_14 AC 199 ms
16,240 KB
testcase_15 AC 155 ms
13,568 KB
testcase_16 AC 509 ms
35,236 KB
testcase_17 AC 632 ms
40,760 KB
testcase_18 AC 629 ms
41,008 KB
testcase_19 AC 616 ms
39,368 KB
testcase_20 AC 354 ms
22,652 KB
testcase_21 AC 373 ms
23,412 KB
testcase_22 AC 152 ms
12,032 KB
testcase_23 AC 116 ms
10,112 KB
testcase_24 AC 339 ms
32,832 KB
testcase_25 AC 633 ms
42,304 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