結果
問題 | No.807 umg tours |
ユーザー |
![]() |
提出日時 | 2019-03-22 21:31:07 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 340 ms / 4,000 ms |
コード長 | 1,429 bytes |
コンパイル時間 | 1,813 ms |
コンパイル使用メモリ | 204,820 KB |
最終ジャッジ日時 | 2025-01-06 23:44:34 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template <typename T> vector<T> dijkstra(Int s,vector<vector<pair<Int, T> > > & G){ const T INF = numeric_limits<T>::max(); using P = pair<T, Int>; Int n=G.size(); vector<T> d(n,INF); vector<Int> b(n,-1); priority_queue<P,vector<P>,greater<P> > q; d[s]=0; q.emplace(d[s],s); while(!q.empty()){ P p=q.top();q.pop(); Int v=p.second; if(d[v]<p.first) continue; for(auto& e:G[v]){ Int u=e.first; T c=e.second; if(d[u]>d[v]+c){ d[u]=d[v]+c; b[u]=v; q.emplace(d[u],u); } } } return d; } struct FastIO{ FastIO(){ cin.tie(0); ios::sync_with_stdio(0); } }fastio_beet; //INSERT ABOVE HERE signed main(){ Int n,m; cin>>n>>m; using P = pair<Int, Int>; vector<vector<P> > G(n*2); for(Int i=0;i<m;i++){ Int a,b,c; cin>>a>>b>>c; a--;b--; G[a].emplace_back(b,c); G[b].emplace_back(a,c); G[a+n].emplace_back(b+n,c); G[b+n].emplace_back(a+n,c); G[a].emplace_back(b+n,0); G[b].emplace_back(a+n,0); } for(Int i=0;i<n;i++) G[i].emplace_back(i+n,0); auto d=dijkstra(0,G); for(Int i=0;i<n;i++) cout<<d[i]+d[i+n]<<"\n"; cout<<flush; return 0; }