結果
問題 | No.1605 Matrix Shape |
ユーザー | tamato |
提出日時 | 2021-07-16 21:38:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 284 ms / 2,000 ms |
コード長 | 1,614 bytes |
コンパイル時間 | 792 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 96,552 KB |
最終ジャッジ日時 | 2024-07-06 08:36:20 |
合計ジャッジ時間 | 6,087 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
58,536 KB |
testcase_01 | AC | 42 ms
57,128 KB |
testcase_02 | AC | 43 ms
58,004 KB |
testcase_03 | AC | 43 ms
57,876 KB |
testcase_04 | AC | 41 ms
58,764 KB |
testcase_05 | AC | 41 ms
57,412 KB |
testcase_06 | AC | 41 ms
58,240 KB |
testcase_07 | AC | 40 ms
57,728 KB |
testcase_08 | AC | 40 ms
57,940 KB |
testcase_09 | AC | 41 ms
58,532 KB |
testcase_10 | AC | 42 ms
57,200 KB |
testcase_11 | AC | 41 ms
57,120 KB |
testcase_12 | AC | 41 ms
57,748 KB |
testcase_13 | AC | 42 ms
58,612 KB |
testcase_14 | AC | 41 ms
57,696 KB |
testcase_15 | AC | 41 ms
57,484 KB |
testcase_16 | AC | 41 ms
57,560 KB |
testcase_17 | AC | 41 ms
58,060 KB |
testcase_18 | AC | 41 ms
58,304 KB |
testcase_19 | AC | 278 ms
95,980 KB |
testcase_20 | AC | 255 ms
88,628 KB |
testcase_21 | AC | 261 ms
88,168 KB |
testcase_22 | AC | 235 ms
95,840 KB |
testcase_23 | AC | 277 ms
95,740 KB |
testcase_24 | AC | 284 ms
96,552 KB |
testcase_25 | AC | 139 ms
80,568 KB |
testcase_26 | AC | 135 ms
81,068 KB |
testcase_27 | AC | 142 ms
80,648 KB |
testcase_28 | AC | 138 ms
80,384 KB |
testcase_29 | AC | 137 ms
80,452 KB |
testcase_30 | AC | 254 ms
88,852 KB |
testcase_31 | AC | 264 ms
89,800 KB |
testcase_32 | AC | 235 ms
84,620 KB |
testcase_33 | AC | 223 ms
84,896 KB |
testcase_34 | AC | 90 ms
80,396 KB |
testcase_35 | AC | 236 ms
91,980 KB |
testcase_36 | AC | 177 ms
88,592 KB |
ソースコード
mod = 1000000007 eps = 10**-9 def main(): import sys input = sys.stdin.buffer.readline class UnionFind(): def __init__(self, n): self.n = n self.root = [-1] * (n + 1) self.rnk = [0] * (n + 1) def find_root(self, x): while self.root[x] >= 0: x = self.root[x] return x def unite(self, x, y): x = self.find_root(x) y = self.find_root(y) if x == y: return elif self.rnk[x] > self.rnk[y]: self.root[x] += self.root[y] self.root[y] = x else: self.root[y] += self.root[x] self.root[x] = y if self.rnk[x] == self.rnk[y]: self.rnk[y] += 1 def isSameGroup(self, x, y): return self.find_root(x) == self.find_root(y) def size(self, x): return -self.root[self.find_root(x)] N = int(input()) UF = UnionFind(2*10**5+1) cnt = [0] * (2*10**5+1) HW = set() for _ in range(N): h, w = map(int, input().split()) UF.unite(h, w) HW.add(h) HW.add(w) cnt[h] -= 1 cnt[w] += 1 M = len(HW) for h in HW: if UF.size(h) != M: print(0) exit() flg = 0 for h in HW: if cnt[h] == 1: flg += 1 elif cnt[h] > 1: flg = -1 if flg == 0: print(M) elif flg == 1: print(1) else: print(0) if __name__ == '__main__': main()