結果

問題 No.807 umg tours
ユーザー chocobochocobo
提出日時 2019-03-22 21:53:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 599 ms / 4,000 ms
コード長 1,578 bytes
コンパイル時間 1,366 ms
コンパイル使用メモリ 110,768 KB
実行使用メモリ 27,856 KB
最終ジャッジ日時 2024-05-02 23:21:30
合計ジャッジ時間 8,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 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 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 290 ms
16,620 KB
testcase_12 AC 310 ms
16,856 KB
testcase_13 AC 424 ms
20,044 KB
testcase_14 AC 173 ms
11,004 KB
testcase_15 AC 131 ms
9,292 KB
testcase_16 AC 428 ms
20,752 KB
testcase_17 AC 572 ms
26,884 KB
testcase_18 AC 599 ms
26,916 KB
testcase_19 AC 551 ms
23,756 KB
testcase_20 AC 329 ms
16,188 KB
testcase_21 AC 345 ms
16,640 KB
testcase_22 AC 139 ms
9,216 KB
testcase_23 AC 103 ms
7,808 KB
testcase_24 AC 312 ms
25,028 KB
testcase_25 AC 567 ms
27,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <cmath>
#include <cstdlib>
#include <cstring>
#include <typeinfo>
#include <numeric>
#include <functional>
#include <unordered_map>
#include <bitset>
#include <stack>


using namespace std;
using ll = long long;
using ull = unsigned long long;

const ll INF = 1e16;
const ll MOD = 1e9 + 7;

#define REP(i, n) for(int i = 0; i < n; i++)




using P = pair<ll, ll>;
using T = pair<ll, pair<ll, ll>>;

int main() {
	ll n, m;
	cin >> n >> m;
	vector<vector<P>> g(n);
	REP(i, m) {
		ll a, b, c;
		cin >> a >> b >> c;
		a--; b--;
		g[a].push_back({ b, c });
		g[b].push_back({ a, c });
	}

	vector<vector<ll>> dist(n, vector<ll>(2, INF));
	dist[0][0] = dist[0][1] = 0;
	priority_queue<T, vector<T>, greater<T>> que;
	que.push({ 0, {0, 0} });
	while (!que.empty()) {
		auto tmp = que.top(); que.pop();
		ll now = tmp.second.first, d = tmp.first, f = tmp.second.second;
		if (dist[now][f] < d) continue;
		for (auto &e : g[now]) {
			ll v = e.first, c = e.second;
			if (f == 0) {
				if (dist[v][0] > d + c) {
					dist[v][0] = d + c;
					que.push({ d + c, {v, 0} });
				}
				if (dist[v][1] > d) {
					dist[v][1] = d;
					que.push({ d, {v, 1} });
				}
			}
			else {
				if (dist[v][1] > d + c) {
					dist[v][1] = d + c;
					que.push({ d + c, {v, 1} });
				}
			}
		}
	}
	/*
	REP(i, n) {
		cout << dist[i][0] << " " << dist[i][1] << endl;
	}
	*/
	REP(i, n) {
		cout << dist[i][0] + dist[i][1] << endl;
	}
}
0