結果
問題 | No.807 umg tours |
ユーザー | addeight2 |
提出日時 | 2019-03-23 10:49:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 372 ms / 4,000 ms |
コード長 | 1,089 bytes |
コンパイル時間 | 1,909 ms |
コンパイル使用メモリ | 167,280 KB |
実行使用メモリ | 24,360 KB |
最終ジャッジ日時 | 2024-05-02 23:38:44 |
合計ジャッジ時間 | 6,750 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,948 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 164 ms
19,284 KB |
testcase_12 | AC | 213 ms
15,712 KB |
testcase_13 | AC | 264 ms
19,444 KB |
testcase_14 | AC | 117 ms
11,596 KB |
testcase_15 | AC | 92 ms
9,900 KB |
testcase_16 | AC | 270 ms
19,240 KB |
testcase_17 | AC | 372 ms
23,632 KB |
testcase_18 | AC | 368 ms
24,176 KB |
testcase_19 | AC | 350 ms
20,248 KB |
testcase_20 | AC | 237 ms
12,616 KB |
testcase_21 | AC | 250 ms
12,948 KB |
testcase_22 | AC | 102 ms
8,772 KB |
testcase_23 | AC | 74 ms
8,192 KB |
testcase_24 | AC | 224 ms
21,272 KB |
testcase_25 | AC | 367 ms
24,360 KB |
ソースコード
#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; } }