結果
問題 | No.416 旅行会社 |
ユーザー | nebukuro09 |
提出日時 | 2016-11-17 11:41:34 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 567 ms / 4,000 ms |
コード長 | 1,744 bytes |
コンパイル時間 | 824 ms |
コンパイル使用メモリ | 115,984 KB |
実行使用メモリ | 51,356 KB |
最終ジャッジ日時 | 2024-06-12 05:07:10 |
合計ジャッジ時間 | 8,743 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 297 ms
44,000 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 7 ms
6,944 KB |
testcase_09 | AC | 30 ms
6,944 KB |
testcase_10 | AC | 308 ms
43,804 KB |
testcase_11 | AC | 312 ms
44,512 KB |
testcase_12 | AC | 317 ms
46,164 KB |
testcase_13 | AC | 296 ms
43,912 KB |
testcase_14 | AC | 567 ms
49,796 KB |
testcase_15 | AC | 556 ms
50,996 KB |
testcase_16 | AC | 558 ms
50,680 KB |
testcase_17 | AC | 564 ms
51,356 KB |
testcase_18 | AC | 543 ms
50,656 KB |
testcase_19 | AC | 379 ms
34,364 KB |
testcase_20 | AC | 375 ms
34,300 KB |
ソースコード
import std.stdio; import std.array; import std.string; import std.conv; import std.algorithm; import std.typecons; import std.range; import std.random; import std.math; import std.container; import std.numeric; struct UnionFind { int[] n_group; int[][] group_n; this (int n) { n_group = iota(n).array; group_n = iota(n).map!(i => [i].array).array; } void unite(int x, int y) { int gx = find(x); int gy = find(y); if (gx == gy) return; if (group_n[gx].length < group_n[gy].length) swap(gx, gy); foreach (ye; group_n[gy]) { n_group[ye] = gx; group_n[gx] ~= ye; } } int find(int x) { return n_group[x]; } bool is_peer(int x, int y) { return find(x) == find(y); } } void main() { auto input = readln.split.map!(to!int); auto N = input[0]; auto M = input[1]; auto Q = input[2]; auto AB = iota(M).map!(_ => readln.split.map!(x => x.to!int-1).array).array; auto CD = iota(Q).map!(_ => readln.split.map!(x => x.to!int-1).array).array; bool[int][int] destroyed; foreach (cd; CD) destroyed[cd[0]][cd[1]] = true; auto uf = UnionFind(N); foreach(ab; AB) { int a = ab[0]; int b = ab[1]; if (a in destroyed && b in destroyed[a]) continue; uf.unite(a, b); } auto ans = new int[](N); uf.group_n[uf.find(0)].each!(n => ans[n] = -1); foreach (q; iota(Q-1, -1, -1)) { int c = CD[q][0]; int d = CD[q][1]; if (uf.find(c) == uf.find(d)) continue; else if (uf.find(0) == uf.find(c)) foreach (n; uf.group_n[uf.find(d)]) ans[n] = q+1; else if (uf.find(0) == uf.find(d)) foreach (n; uf.group_n[uf.find(c)]) ans[n] = q+1; uf.unite(c, d); } ans[1..$].each!(writeln); }