結果
問題 | No.788 トラックの移動 |
ユーザー | leaf_1415 |
提出日時 | 2019-02-08 22:27:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,395 bytes |
コンパイル時間 | 644 ms |
コンパイル使用メモリ | 69,564 KB |
実行使用メモリ | 34,944 KB |
最終ジャッジ日時 | 2024-07-01 11:37:37 |
合計ジャッジ時間 | 3,671 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 449 ms
34,692 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 | 105 ms
15,488 KB |
testcase_05 | AC | 441 ms
34,944 KB |
testcase_06 | AC | 452 ms
34,944 KB |
testcase_07 | AC | 1 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 | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 102 ms
34,908 KB |
testcase_16 | AC | 364 ms
34,816 KB |
ソースコード
#include <iostream> #include <vector> #include <queue> #define llint long long #define inf 1e18 using namespace std; typedef pair<llint, llint> P; struct edge{ llint to, cost; edge(llint a, llint b){ to = a, cost = b; } }; llint n, m, l; llint t[2005]; vector<edge> G[2005]; llint dist[2005][2005]; void dijkstra(llint S, llint dist[]) { for(int i = 1; i <= n; i++) dist[i] = inf; dist[S] = 0; priority_queue< P, vector<P>, greater<P> > Q; Q.push( make_pair(0, S) ); llint v, d; while(Q.size()){ d = Q.top().first; v = Q.top().second; Q.pop(); if(dist[v] < d) continue; for(int i = 0; i < G[v].size(); i++){ if(dist[G[v][i].to] > d + G[v][i].cost){ dist[G[v][i].to] = d + G[v][i].cost; Q.push( make_pair(dist[G[v][i].to], G[v][i].to) ); } } } } int main(void) { cin >> n >> m >> l; for(int i = 1; i <= n; i++) cin >> t[i]; llint u, v, w; for(int i = 0; i < m; i++){ cin >> u >> v >> w; G[u].push_back(edge(v, w)); G[v].push_back(edge(u, w)); } for(int i = 1; i <= n; i++) dijkstra(i, dist[i]); llint ans = inf; for(int i = 1; i <= n; i++){ llint tmp = dist[l][i]; for(int j = 1; j <= n; j++) tmp += t[j] * dist[i][j] * 2; llint mx = 0; for(int j = 1; j <= n; j++){ if(t[j] == 0) continue; mx = max(mx, dist[l][i] + dist[i][j] - dist[l][j]); } ans = min(ans, tmp-mx); } cout << ans << endl; return 0; }