結果

問題 No.807 umg tours
ユーザー aa
提出日時 2019-03-22 23:59:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 464 ms / 4,000 ms
コード長 1,409 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 179,980 KB
実行使用メモリ 23,760 KB
最終ジャッジ日時 2024-11-23 19:14:18
合計ジャッジ時間 7,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 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 253 ms
15,140 KB
testcase_12 AC 258 ms
14,096 KB
testcase_13 AC 350 ms
17,488 KB
testcase_14 AC 151 ms
10,008 KB
testcase_15 AC 126 ms
9,060 KB
testcase_16 AC 362 ms
18,276 KB
testcase_17 AC 446 ms
21,444 KB
testcase_18 AC 462 ms
21,364 KB
testcase_19 AC 464 ms
23,760 KB
testcase_20 AC 286 ms
14,896 KB
testcase_21 AC 305 ms
15,160 KB
testcase_22 AC 123 ms
8,548 KB
testcase_23 AC 96 ms
7,756 KB
testcase_24 AC 282 ms
18,324 KB
testcase_25 AC 428 ms
22,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

using P = pair<long, int>;

struct edge {int to; long c;};

void solve()
{
	int n, m;
	cin >> n >> m;
	vector<vector<long>> dist(2, vector<long>(n, 1e18));
	dist[0][0] = dist[1][0] = 0;
	vector<edge> g[n];
	while(m--)
	{
		int a, b;
		long c;
		cin >> a >> b >> c;
		a--, b--;
		g[a].push_back({b, c});
		g[b].push_back({a, c});
	}
	priority_queue<P, vector<P>, greater<P>> q, q2;
	q.push({0, 0});
	q2.push({0, 0});
	while(!q.empty() || !q2.empty())
	{
		while (!q.empty())
		{
			auto p = q.top();
			q.pop();
			int v = p.second;
			long c = p.first;
			if (dist[0][v] < c) continue;
			for (auto np : g[v])
			{
				int nv = np.to;
				long nc = np.c + dist[0][v];
				if (dist[0][nv] > nc)
				{
					dist[0][nv] = nc;
					q.push({nc, nv});
				}
				if (dist[1][nv] > dist[0][v])
				{
					dist[1][nv] = dist[0][v];
					q2.push({dist[0][v], nv});
				}
			}
		}
		while(!q2.empty())
		{
			auto p = q2.top();
			q2.pop();
			int v = p.second;
			long c = p.first;
			if (dist[1][v] < c) continue;
			for (auto np : g[v])
			{
				int nv = np.to;
				long nc = np.c + dist[1][v];
				if (dist[1][nv] > nc)
				{
					dist[1][nv] = nc;
					q2.push({nc, nv});
				}
			}
		}

	}
	for (int i = 0; i < n; i++)
	{
		long ans = dist[0][i] + dist[1][i];
		cout << ans << endl;
	}
}

int main(void)
{
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0