結果
問題 | No.1605 Matrix Shape |
ユーザー | Mine |
提出日時 | 2021-09-10 21:29:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,333 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 103,124 KB |
最終ジャッジ日時 | 2024-06-11 22:32:08 |
合計ジャッジ時間 | 11,392 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
55,936 KB |
testcase_01 | AC | 49 ms
55,168 KB |
testcase_02 | AC | 47 ms
55,936 KB |
testcase_03 | AC | 54 ms
55,956 KB |
testcase_04 | AC | 53 ms
55,936 KB |
testcase_05 | AC | 47 ms
55,680 KB |
testcase_06 | AC | 48 ms
55,936 KB |
testcase_07 | AC | 59 ms
56,064 KB |
testcase_08 | AC | 52 ms
56,192 KB |
testcase_09 | AC | 48 ms
55,808 KB |
testcase_10 | AC | 50 ms
55,552 KB |
testcase_11 | AC | 51 ms
55,552 KB |
testcase_12 | AC | 49 ms
55,552 KB |
testcase_13 | AC | 51 ms
55,296 KB |
testcase_14 | AC | 50 ms
55,424 KB |
testcase_15 | AC | 49 ms
55,424 KB |
testcase_16 | AC | 48 ms
55,424 KB |
testcase_17 | AC | 52 ms
55,808 KB |
testcase_18 | AC | 49 ms
55,936 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 647 ms
103,124 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 200 ms
78,496 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 488 ms
86,656 KB |
testcase_34 | AC | 179 ms
78,080 KB |
testcase_35 | AC | 535 ms
94,652 KB |
testcase_36 | AC | 401 ms
88,724 KB |
ソースコード
from collections import defaultdict class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def main(): n = int(input()) uf = UnionFind(2*10**5+1) d = defaultdict(int) pr = -1 dead = False for i in range(n): h, w = map(int, input().split()) d[h] += 1 d[w] -= 1 uf.union(h, w) if i == 0: pr = uf.find(h) elif pr != uf.find(h): dead = True if dead: return 0 l = list(d.values()) zerocounter = l.count(0) if zerocounter == len(l): return len(l) elif zerocounter == len(l)-2 and l.count(1) == 1 and l.count(-1) == 1: return 1 else: return 0 print(main())