結果
問題 | No.788 トラックの移動 |
ユーザー | kotatsugame |
提出日時 | 2019-02-08 22:54:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 447 ms / 2,000 ms |
コード長 | 1,320 bytes |
コンパイル時間 | 1,534 ms |
コンパイル使用メモリ | 86,872 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 22:56:34 |
合計ジャッジ時間 | 4,003 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 397 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 94 ms
5,376 KB |
testcase_05 | AC | 388 ms
5,376 KB |
testcase_06 | AC | 400 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 88 ms
5,376 KB |
testcase_16 | AC | 447 ms
5,376 KB |
コンパイルメッセージ
main.cpp:38:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 38 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; #include<vector> #include<queue> #include<limits> template<typename T> vector<T>dijkstra(int s,const vector<vector<pair<int,T> > >&G,T INF=numeric_limits<T>::max()) { int n=G.size(); vector<T>d(n,INF); vector<int>parent(n,-1); priority_queue<pair<T,int>,vector<pair<T,int> >,greater<pair<T,int> > >P; d[s]=0; P.push(make_pair(d[s],s)); while(!P.empty()) { pair<T,int>p=P.top();P.pop(); int v=p.second; if(d[v]<p.first)continue; for(const pair<int,T>&e:G[v]) { int u=e.first; T cost=d[v]+e.second; if(d[u]>cost) { d[u]=cost; parent[u]=v; P.push(make_pair(d[u],u)); } } } return d; } int n,m,L; long t[2000]; main() { cin>>n>>m>>L; int cnt=0; for(int i=0;i<n;i++)cin>>t[i],cnt+=!!t[i]; if(cnt==1) { cout<<0<<endl; return 0; } vector<vector<pair<int,long> > >G(n); for(int i=0;i<m;i++) { int a,b;long c;cin>>a>>b>>c; a--;b--; G[a].push_back(make_pair(b,c)); G[b].push_back(make_pair(a,c)); } vector<long>off=dijkstra(L-1,G); long ans=9e18; for(int i=0;i<n;i++) { long now=0; long ofset=off[i]; vector<long>a=dijkstra(i,G); for(int j=0;j<n;j++) { now+=t[j]*a[j]*2; if(t[j])ofset=min(ofset,off[j]-a[j]); } ans=min(ans,now+ofset); } cout<<ans<<endl; }