結果
問題 | No.788 トラックの移動 |
ユーザー | chocorusk |
提出日時 | 2019-02-08 21:54:07 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,226 bytes |
コンパイル時間 | 1,278 ms |
コンパイル使用メモリ | 102,840 KB |
実行使用メモリ | 34,936 KB |
最終ジャッジ日時 | 2024-07-01 11:30:23 |
合計ジャッジ時間 | 4,599 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> using namespace std; typedef long long int ll; typedef pair<ll, int> P; const ll INF=1e16; int n, m, l; ll t[2001]; vector<P> g[2001]; ll d[2001][2001]; int main() { cin>>n>>m>>l; l--; for(int i=0; i<n; i++) cin>>t[i]; for(int i=0; i<m; i++){ int a, b; ll c; cin>>a>>b>>c; a--; b--; g[a].push_back(P(c, b)); g[b].push_back(P(c, a)); } for(int i=0; i<n; i++){ fill(d[i], d[i]+n, INF); d[i][i]=0; priority_queue<P, vector<P>, greater<P>> que; que.push(P(0, i)); while(!que.empty()){ P p=que.top(); que.pop(); int x=p.second; if(d[i][x]<p.first) continue; for(auto q:g[x]){ int y=q.second; if(d[i][y]>d[i][x]+q.first){ d[i][y]=d[i][x]+q.first; que.push(P(d[i][y], y)); } } } } ll ans=INF; for(int i=0; i<n; i++){ ll ans1=0; for(int j=0; j<n; j++){ ans1+=t[j]*(d[j][l]+d[j][i]); } ans=min(ans, ans1); } cout<<ans<<endl; return 0; }