結果

問題 No.807 umg tours
ユーザー BwambocosBwambocos
提出日時 2019-03-22 22:16:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 597 ms / 4,000 ms
コード長 2,054 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 192,228 KB
実行使用メモリ 36,372 KB
最終ジャッジ日時 2024-05-02 23:26:14
合計ジャッジ時間 9,988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 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 295 ms
23,508 KB
testcase_12 AC 329 ms
22,012 KB
testcase_13 AC 438 ms
27,044 KB
testcase_14 AC 182 ms
14,180 KB
testcase_15 AC 140 ms
11,720 KB
testcase_16 AC 448 ms
28,280 KB
testcase_17 AC 592 ms
36,324 KB
testcase_18 AC 579 ms
36,372 KB
testcase_19 AC 562 ms
32,312 KB
testcase_20 AC 340 ms
20,224 KB
testcase_21 AC 359 ms
20,984 KB
testcase_22 AC 143 ms
10,752 KB
testcase_23 AC 109 ms
9,088 KB
testcase_24 AC 335 ms
31,644 KB
testcase_25 AC 597 ms
36,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define in std::cin
#define out std::cout
#define rep(i,N) for(LL i=0;i<N;++i)
typedef long long int LL;
typedef std::pair<LL, LL> P;
struct edge { LL to, cost; };

const LL inf = 112345678901234567;
std::vector<LL>dist1;
std::vector<std::vector<edge>>G;
std::vector<std::vector<LL>>dist2;

void dijkstra1(LL s)
{
	std::priority_queue<P, std::vector<P>, std::greater<P>>que;
	std::fill(dist1.begin(), dist1.end(), inf);
	dist1[s] = 0;
	que.push(P(0, s));
	while (!que.empty())
	{
		P p = que.top(); que.pop();
		LL v = p.second;
		if (dist1[v] < p.first) continue;
		rep(i, G[v].size())
		{
			edge e = G[v][i];
			if (dist1[e.to] > dist1[v] + e.cost)
			{
				dist1[e.to] = dist1[v] + e.cost;
				que.push(P(dist1[e.to], e.to));
			}
		}
	}
}

void dijkstra2(LL s)
{
	std::priority_queue<std::pair<P, bool>, std::vector<std::pair<P, bool>>, std::greater<std::pair<P, bool>>>que;
	dist2[s][false] = 0;
	que.push(std::pair<P, bool>(P(0, s), false));
	while (!que.empty())
	{
		auto p = que.top(); que.pop();
		LL v = p.first.second, d = p.first.first, f = p.second;
		if (dist2[v][f] < d) continue;
		rep(i, G[v].size())
		{
			edge e = G[v][i];
			if (!f && dist2[e.to][true] > dist2[v][false] + 0)
			{
				dist2[e.to][true] = dist2[v][false] + 0;
				que.push(std::pair<P, bool>(P(dist2[e.to][true], e.to), true));
			}
			if (dist2[e.to][f] > dist2[v][f] + e.cost)
			{
				dist2[e.to][f] = dist2[v][f] + e.cost;
				que.push(std::pair<P, bool>(P(dist2[e.to][f], e.to), f));
			}
		}
	}
}

int main()
{
	LL N, M;
	in >> N >> M;
	std::vector<LL>a(M), b(M), c(M);
	rep(i, M) in >> a[i] >> b[i] >> c[i];

	dist1.resize(N + 1); dist2.resize(N + 1, std::vector<LL>(2, inf)), G.resize(N + 1);
	rep(i, M)
	{
		G[a[i]].push_back({ b[i],c[i] });
		G[b[i]].push_back({ a[i],c[i] });
	}

	std::vector<LL>ans(N + 1);
	dijkstra1(1);
	for (LL i = 1; i <= N; ++i) ans[i] += dist1[i];
	dijkstra2(1);
	for (LL i = 1; i <= N; ++i) ans[i] += std::min(dist2[i][true], dist2[i][false]);

	for (LL i = 1; i <= N; ++i) out << ans[i] << std::endl;
}
0