結果
問題 | No.2569 はじめてのおつかいHard |
ユーザー | ragna |
提出日時 | 2023-11-13 23:37:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 273 ms
20,088 KB |
testcase_01 | AC | 269 ms
20,088 KB |
testcase_02 | AC | 271 ms
20,088 KB |
testcase_03 | AC | 271 ms
20,060 KB |
testcase_04 | AC | 273 ms
20,092 KB |
testcase_05 | AC | 529 ms
27,008 KB |
testcase_06 | AC | 432 ms
23,652 KB |
testcase_07 | AC | 490 ms
27,136 KB |
testcase_08 | AC | 532 ms
27,392 KB |
testcase_09 | AC | 380 ms
24,444 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
#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; } } }