結果

問題 No.807 umg tours
ユーザー yurujirouyurujirou
提出日時 2023-04-03 20:50:33
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 744 ms / 4,000 ms
コード長 1,295 bytes
コンパイル時間 4,358 ms
コンパイル使用メモリ 267,404 KB
実行使用メモリ 43,492 KB
最終ジャッジ日時 2024-09-25 02:17:12
合計ジャッジ時間 13,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
20,044 KB
testcase_01 AC 7 ms
19,920 KB
testcase_02 AC 8 ms
19,916 KB
testcase_03 AC 7 ms
20,176 KB
testcase_04 AC 7 ms
20,044 KB
testcase_05 AC 7 ms
19,916 KB
testcase_06 AC 8 ms
20,048 KB
testcase_07 AC 7 ms
19,916 KB
testcase_08 AC 7 ms
20,044 KB
testcase_09 AC 7 ms
22,092 KB
testcase_10 AC 7 ms
21,964 KB
testcase_11 AC 499 ms
34,660 KB
testcase_12 AC 406 ms
34,712 KB
testcase_13 AC 592 ms
38,788 KB
testcase_14 AC 235 ms
29,628 KB
testcase_15 AC 184 ms
23,680 KB
testcase_16 AC 612 ms
35,360 KB
testcase_17 AC 733 ms
43,356 KB
testcase_18 AC 744 ms
43,492 KB
testcase_19 AC 724 ms
41,760 KB
testcase_20 AC 369 ms
27,472 KB
testcase_21 AC 389 ms
28,492 KB
testcase_22 AC 162 ms
24,488 KB
testcase_23 AC 126 ms
21,632 KB
testcase_24 AC 408 ms
40,144 KB
testcase_25 AC 728 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

#define REP(i, n) for(int i = 0; i < (int)n; i++)
#define LREP(i, n) for(LL i = 0; i < (LL)n; i++)
#define RREP(i, n) for(int i = (int)n-1; i >= 0; i--)
#define V(T) vector<T>

#define P pair<int, int>
#define LP pair<LL, LL>
#define T3 tuple<LL, LL, LL>
#define T4 tuple<LL, LL, LL, LL>
#define INF 1000000007
#define SIZE 500100
#define MOD 998244353
typedef long long LL;

LL N, M;
LL A[SIZE], B[SIZE], C[SIZE];
V(int) E[SIZE];
LL dist[SIZE];

int main() {
	cin >> N >> M;
	REP(i, M) {
		cin >> A[i] >> B[i] >> C[i];
		A[i]--; B[i]--;
		E[A[i]].push_back(i);
		E[B[i]].push_back(i);
	}

	REP(i, 2 * N) dist[i] = 1e18;
	priority_queue<LP, V(LP), greater<LP>> que;
	que.push(LP(0, 0)); // have a ticket
	que.push(LP(0, N));
	while (que.size()) {
		LP p = que.top(); que.pop();
		LL d = p.first, u = p.second;
		if (dist[u] <= d) continue;
		dist[u] = d;
		for (auto i : E[u % N]) {
			LL v = A[i], cost = C[i];
			if (v % N == u % N) v = B[i];
			if (u < N) {
				que.push(LP(d + cost, v));
				que.push(LP(d, v + N));
			}
			else {
				que.push(LP(d + cost, v + N));
			}
		}
	}

	REP(i, N) {
		cout << dist[i] + dist[i + N] << endl;
	}
}
0