結果

問題 No.807 umg tours
ユーザー kotatsugamekotatsugame
提出日時 2019-04-20 02:18:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 4,000 ms
コード長 934 bytes
コンパイル時間 914 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 19,884 KB
最終ジャッジ日時 2024-05-02 23:47:55
合計ジャッジ時間 6,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,976 KB
testcase_01 AC 3 ms
8,136 KB
testcase_02 AC 3 ms
7,364 KB
testcase_03 AC 4 ms
7,112 KB
testcase_04 AC 3 ms
7,236 KB
testcase_05 AC 3 ms
7,492 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,980 KB
testcase_08 AC 3 ms
6,980 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,980 KB
testcase_11 AC 232 ms
14,432 KB
testcase_12 AC 233 ms
13,236 KB
testcase_13 AC 313 ms
15,024 KB
testcase_14 AC 141 ms
10,552 KB
testcase_15 AC 115 ms
9,800 KB
testcase_16 AC 338 ms
15,224 KB
testcase_17 AC 411 ms
19,884 KB
testcase_18 AC 415 ms
19,484 KB
testcase_19 AC 404 ms
16,376 KB
testcase_20 AC 251 ms
12,228 KB
testcase_21 AC 261 ms
12,104 KB
testcase_22 AC 115 ms
10,092 KB
testcase_23 AC 86 ms
9,160 KB
testcase_24 AC 277 ms
14,640 KB
testcase_25 AC 415 ms
18,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
using namespace std;
int N,M;
vector<pair<int,int> >G[1<<17];
long d[2][1<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<M;i++)
	{
		int a,b,c;cin>>a>>b>>c;
		G[a-1].push_back(make_pair(b-1,c));
		G[b-1].push_back(make_pair(a-1,c));
	}
	for(int i=1;i<N;i++)d[0][i]=d[1][i]=9e18;
	priority_queue<pair<long,pair<int,int> > >P;
	P.push(make_pair(0,make_pair(0,0)));
	while(!P.empty())
	{
		long c=-P.top().first;
		int u=P.top().second.first;
		int f=P.top().second.second;
		P.pop();
		if(d[f][u]<c)continue;
		for(int i=0;i<G[u].size();i++)
		{
			int v=G[u][i].first;
			if(d[f][v]>c+G[u][i].second)
			{
				d[f][v]=c+G[u][i].second;
				P.push(make_pair(-d[f][v],make_pair(v,f)));
			}
			if(f==0)
			{
				if(d[1][v]>c)
				{
					d[1][v]=c;
					P.push(make_pair(-c,make_pair(v,1)));
				}
			}
		}
	}
	for(int i=0;i<N;i++)
	{
		cout<<d[0][i]+d[1][i]<<endl;
	}
}
0