結果
問題 | No.2569 はじめてのおつかいHard |
ユーザー | ragna |
提出日時 | 2023-11-13 23:37:48 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 532 ms / 2,000 ms |
コード長 | 1,154 bytes |
コンパイル時間 | 2,504 ms |
コンパイル使用メモリ | 210,024 KB |
実行使用メモリ | 27,392 KB |
最終ジャッジ日時 | 2024-09-26 03:25:46 |
合計ジャッジ時間 | 8,467 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 10 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; using Pair=pair<ll,ll>; const ll INF=1e18; void dijkstra(ll s,vector<vector<Pair>> &G,vector<ll> &dist){ priority_queue<Pair,vector<Pair>,greater<Pair>> que; que.push({0,s}); while(!que.empty()){ ll to=que.top().second,cost=que.top().first; if(cost<dist[to]){ dist[to]=cost; for(auto&& [x,y]:G[to]){ que.push({dist[to]+y,x}); } } que.pop(); } } int main(){ ll N,M; cin >> N >> M; vector<vector<Pair>> G1(N),G2(M); for(int i=0;i<M;i++){ ll u,v,t; cin >> u >> v >> t; u--,v--; G1[u].push_back({v,t}); G2[v].push_back({u,t}); } vector<ll> dist1(N,INF),dist2(N,INF),dist3(N,INF),dist4(N,INF); dijkstra(N-2,G1,dist1); dijkstra(N-2,G2,dist2); dijkstra(N-1,G1,dist3); dijkstra(N-1,G2,dist4); for(int i=0;i<N-2;i++){ ll ans=min(dist2[i]+dist1[N-1]+dist3[i],dist4[i]+dist3[N-2]+dist1[i]); if(ans<INF){ cout << ans << endl; } else{ cout << -1 << endl; } } }