結果

問題 No.807 umg tours
ユーザー addeight2addeight2
提出日時 2019-03-23 10:49:23
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 339 ms / 4,000 ms
コード長 1,089 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 168,612 KB
実行使用メモリ 24,340 KB
最終ジャッジ日時 2024-11-23 19:16:48
合計ジャッジ時間 6,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 4 ms
5,760 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,888 KB
testcase_07 AC 2 ms
5,760 KB
testcase_08 AC 3 ms
5,632 KB
testcase_09 AC 3 ms
5,632 KB
testcase_10 AC 3 ms
5,760 KB
testcase_11 AC 155 ms
17,820 KB
testcase_12 AC 195 ms
15,324 KB
testcase_13 AC 245 ms
18,020 KB
testcase_14 AC 114 ms
11,204 KB
testcase_15 AC 90 ms
9,640 KB
testcase_16 AC 251 ms
19,056 KB
testcase_17 AC 339 ms
23,500 KB
testcase_18 AC 335 ms
23,408 KB
testcase_19 AC 316 ms
20,244 KB
testcase_20 AC 210 ms
12,660 KB
testcase_21 AC 220 ms
12,784 KB
testcase_22 AC 95 ms
8,704 KB
testcase_23 AC 73 ms
8,064 KB
testcase_24 AC 225 ms
21,020 KB
testcase_25 AC 334 ms
24,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,a,b) for(ll i=(a);i<(b);i++)
#define REP(i,a) FOR(i,0,a)
using namespace std;
const ll MAX_N=1e5,INF=1e18;
ll N,M;
struct edge{
	ll to,cst;
};
vector<edge> G[MAX_N];
ll dst[MAX_N][2];
struct st{
	ll v,f;
};
bool operator<(const st &a,const st &b){
	return a.v<b.v;
}
typedef pair<ll,st> P;
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	cin>>N>>M;
	REP(i,M){
		ll a,b,c;
		cin>>a>>b>>c;
		a--;
		b--;
		G[a].push_back((edge){b,c});
		G[b].push_back((edge){a,c});
	}
	REP(v,N)REP(f,2)dst[v][f]=INF;
	dst[0][0]=0;
	priority_queue<P,vector<P>,greater<P> > pque;
	pque.push(P(0,(st){0,0}));
	while(!pque.empty()){
		P p=pque.top();
		pque.pop();
		st s=p.second;
		if(dst[s.v][s.f]<p.first)continue;
		for(auto e:G[s.v]){
			REP(i,2){
				if(s.f==1 && i==1)continue;
				ll cst=(i==0 ? e.cst : 0),f2=(i==0 ? s.f : 1);
				if(dst[e.to][f2]>p.first+cst){
					dst[e.to][f2]=p.first+cst;
					pque.push(P(dst[e.to][f2],(st){e.to,f2}));
				}
			}
		}
	}
	cout<<0<<endl;
	REP(i,N-1){
		cout<<dst[i+1][0]+dst[i+1][1]<<endl;
	}
}
0