結果

問題 No.807 umg tours
ユーザー kotatsugamekotatsugame
提出日時 2019-04-20 02:18:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 441 ms / 4,000 ms
コード長 934 bytes
コンパイル時間 936 ms
コンパイル使用メモリ 83,456 KB
実行使用メモリ 19,480 KB
最終ジャッジ日時 2024-11-23 19:26:27
合計ジャッジ時間 7,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,620 KB
testcase_01 AC 4 ms
6,848 KB
testcase_02 AC 4 ms
7,744 KB
testcase_03 AC 4 ms
7,104 KB
testcase_04 AC 3 ms
6,984 KB
testcase_05 AC 3 ms
6,980 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 3 ms
7,364 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,852 KB
testcase_10 AC 3 ms
6,984 KB
testcase_11 AC 252 ms
14,308 KB
testcase_12 AC 265 ms
13,380 KB
testcase_13 AC 342 ms
15,040 KB
testcase_14 AC 150 ms
10,224 KB
testcase_15 AC 120 ms
9,924 KB
testcase_16 AC 356 ms
15,512 KB
testcase_17 AC 441 ms
19,368 KB
testcase_18 AC 439 ms
19,480 KB
testcase_19 AC 430 ms
16,512 KB
testcase_20 AC 272 ms
12,228 KB
testcase_21 AC 278 ms
12,356 KB
testcase_22 AC 121 ms
9,932 KB
testcase_23 AC 93 ms
8,904 KB
testcase_24 AC 287 ms
14,640 KB
testcase_25 AC 439 ms
19,256 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