結果
問題 | No.748 yuki国のお財布事情 |
ユーザー | nebukuro09 |
提出日時 | 2018-10-19 21:43:23 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 194 ms / 2,000 ms |
コード長 | 1,733 bytes |
コンパイル時間 | 948 ms |
コンパイル使用メモリ | 140,080 KB |
実行使用メモリ | 26,632 KB |
最終ジャッジ日時 | 2024-06-13 01:53:32 |
合計ジャッジ時間 | 4,042 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 24 ms
7,080 KB |
testcase_14 | AC | 40 ms
10,676 KB |
testcase_15 | AC | 29 ms
9,108 KB |
testcase_16 | AC | 74 ms
14,196 KB |
testcase_17 | AC | 165 ms
25,428 KB |
testcase_18 | AC | 177 ms
25,856 KB |
testcase_19 | AC | 194 ms
26,632 KB |
testcase_20 | AC | 164 ms
25,856 KB |
testcase_21 | AC | 169 ms
26,368 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 148 ms
19,328 KB |
testcase_26 | AC | 176 ms
26,480 KB |
testcase_27 | AC | 168 ms
26,240 KB |
testcase_28 | AC | 126 ms
18,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, std.bitmanip; immutable int INF = 1 << 29; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto M = s[1]; auto K = s[2]; auto G = new Tuple!(int, long)[][](N); auto E = new Tuple!(int, int, long)[](M); foreach (i; 0..M) { s = readln.split.map!(to!int); int u = s[0] - 1; int v = s[1] - 1; long c = s[2].to!long; G[u] ~= tuple(v, c); G[v] ~= tuple(u, c); E[i] = tuple(u, v, c); } auto X = K.iota.map!(_ => readln.chomp.to!int - 1).array; long ans = 0; auto uf = new UnionFind(N); foreach (i; X) { ans += E[i][2]; uf.unite(E[i][0], E[i][1]); } auto pq = new BinaryHeap!(Array!(Tuple!(int, int, long)), "a[2] > b[2]")(); foreach (e; E) pq.insert(e); while (!pq.empty) { auto e = pq.front; auto u = e[0]; auto v = e[1]; auto c = e[2]; pq.removeFront; if (uf.find(u) == uf.find(v)) { continue; } ans += c; uf.unite(u, v); } writeln(E.map!(e => e[2]).sum - ans); } class UnionFind { int N; int[] table; this(int n) { N = n; table = new int[](N); fill(table, -1); } int find(int x) { return table[x] < 0 ? x : (table[x] = find(table[x])); } void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if (table[x] > table[y]) swap(x, y); table[x] += table[y]; table[y] = x; } }