結果
問題 | No.1449 新プロランド |
ユーザー | shiomusubi496 |
提出日時 | 2021-03-31 00:22:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 921 bytes |
コンパイル時間 | 1,807 ms |
コンパイル使用メモリ | 184,384 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 10:49:22 |
合計ジャッジ時間 | 2,550 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 6 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 6 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 24 ms
6,940 KB |
testcase_28 | AC | 4 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:25:13: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 25 | auto[c,v,p]=PQ.top();PQ.pop(); | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; using A=array<ll,3>; constexpr ll INF=1e18; struct edge{ int to; ll cost; }; bool chmin(ll&a,ll b){return a>b?a=b,true:false;} vector<edge>G[105]; map<ll,ll>dist[105]; ll T[105]; int main(){ int N,M; cin>>N>>M; for(int i=0;i<M;i++){ int A,B,C; cin>>A>>B>>C; G[A-1].push_back({B-1,C}); G[B-1].push_back({A-1,C}); } for(int i=0;i<N;i++) cin>>T[i]; priority_queue<A,vector<A>,greater<A>>PQ; PQ.push({0,0,0}); dist[0][0]=0; while(!PQ.empty()){ auto[c,v,p]=PQ.top();PQ.pop(); if(v==N-1){ cout<<c<<endl; return 0; } if(dist[v][p]<c) continue; c+=T[v];p+=T[v]; for(edge e:G[v]){ if(dist[e.to].count(p)==0)dist[e.to][p]=INF; if(chmin(dist[e.to][p],c+e.cost/p)) PQ.push({c+e.cost/p,e.to,p}); } } }