結果
問題 | No.788 トラックの移動 |
ユーザー | nebukuro09 |
提出日時 | 2019-02-08 22:07:26 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 1,035 ms / 2,000 ms |
コード長 | 2,076 bytes |
コンパイル時間 | 1,414 ms |
コンパイル使用メモリ | 141,268 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-13 04:09:57 |
合計ジャッジ時間 | 7,445 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,035 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,948 KB |
testcase_04 | AC | 240 ms
6,940 KB |
testcase_05 | AC | 1,002 ms
6,944 KB |
testcase_06 | AC | 1,011 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,944 KB |
testcase_15 | AC | 334 ms
6,940 KB |
testcase_16 | AC | 859 ms
6,944 KB |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, core.stdc.string; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto M = s[1]; auto K = s[2] - 1; auto T = readln.split.map!(to!long).array; auto G = new Tuple!(int, long)[][](N); foreach (_; 0..M) { s = readln.split.map!(to!int); G[s[0]-1] ~= tuple(s[1]-1, s[2].to!long); G[s[1]-1] ~= tuple(s[0]-1, s[2].to!long); } long ans = 1L << 59; auto dist = new long[](N); auto pq = new BinaryHeap!(Array!(Tuple!(int, long)), "a[1] > b[1]"); Tuple!(int, long)[] x; { dist[] = 1L << 59; pq.clear(); pq.insert(tuple(K, 0L)); while (!pq.empty) { auto n = pq.front[0]; auto d = pq.front[1]; pq.removeFront; if (dist[n] <= d) continue; dist[n] = d; foreach (e; G[n]) { auto m = e[0]; auto nd = e[1] + d; if (dist[m] <= nd) continue; pq.insert(tuple(m, nd)); } } foreach (i; 0..N) if (T[i] > 0) x ~= tuple(i, dist[i]); x.sort!"a[1] < b[1]"; } foreach (v; 0..N) { dist[] = 1L << 59; pq.clear(); pq.insert(tuple(v, 0L)); while (!pq.empty) { auto n = pq.front[0]; auto d = pq.front[1]; pq.removeFront; if (dist[n] <= d) continue; dist[n] = d; foreach (e; G[n]) { auto m = e[0]; auto nd = e[1] + d; if (dist[m] <= nd) continue; pq.insert(tuple(m, nd)); } } long tmp = 0; foreach (i; 0..N) { tmp += T[i] * 2 * dist[i]; } auto y = x.front[0]; auto z = x.front[1]; tmp = min(tmp, tmp - dist[y] + z); ans = min(ans, tmp); } ans.writeln; }