結果
問題 | No.1605 Matrix Shape |
ユーザー | nebukuro09 |
提出日時 | 2021-07-16 22:04:38 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,013 bytes |
コンパイル時間 | 895 ms |
コンパイル使用メモリ | 123,132 KB |
実行使用メモリ | 43,892 KB |
最終ジャッジ日時 | 2024-06-22 11:45:38 |
合計ジャッジ時間 | 6,494 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 287 ms
43,892 KB |
testcase_20 | WA | - |
testcase_21 | AC | 149 ms
15,740 KB |
testcase_22 | AC | 276 ms
40,496 KB |
testcase_23 | AC | 292 ms
42,676 KB |
testcase_24 | AC | 155 ms
15,304 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 148 ms
16,784 KB |
testcase_28 | AC | 173 ms
16,708 KB |
testcase_29 | AC | 138 ms
17,092 KB |
testcase_30 | WA | - |
testcase_31 | AC | 149 ms
15,208 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 171 ms
17,208 KB |
testcase_35 | AC | 123 ms
14,720 KB |
testcase_36 | AC | 72 ms
13,844 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; void main() { auto N = readln.chomp.to!int; auto A = iota(N).map!(_ => readln.split.map!(to!int).array).array; auto X = new int[](2*10^^5+10); auto Y = new int[](2*10^^5+10); foreach (a; A) X[a[0]]++; foreach (a; A) Y[a[1]]++; int indeg = 0; int outdeg = 0; foreach (i; 0..2*10^^5+10) { auto diff = X[i] - Y[i]; if (abs(diff) >= 2) { writeln(0); return; } if (diff == 1) { indeg += 1; } else if (diff == -1) { outdeg += 1; } } if (indeg == 1 && outdeg == 1) { writeln(1); return; } if (indeg == 0 && outdeg == 0) { auto uf = new UnionFind(N); int[int] dict_in; int[int] dict_out; foreach (i, a; A) { if (a[0] in dict_out) { uf.unite(i.to!int, dict_out[a[0]]); } if (a[1] in dict_in) { uf.unite(i.to!int, dict_in[a[1]]); } dict_in[a[0]] = i.to!int; dict_out[a[1]] = i.to!int; } if (uf.table[uf.find(0)] == -N) { writeln(dict_in.keys.length); return; } writeln(0); return; } writeln(0); return; } class UnionFind { import std.algorithm : swap; int n; int[] table; this(int n) { this.n = n; table = new int[](n); 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; } bool same(int x, int y) { return find(x) == find(y); } }