結果

問題 No.1605 Matrix Shape
ユーザー hir355hir355
提出日時 2021-07-16 22:13:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,542 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 127,952 KB
最終ジャッジ日時 2024-07-06 09:33:14
合計ジャッジ時間 9,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
75,136 KB
testcase_01 AC 58 ms
75,520 KB
testcase_02 AC 55 ms
75,264 KB
testcase_03 AC 57 ms
75,520 KB
testcase_04 AC 55 ms
75,644 KB
testcase_05 AC 55 ms
75,392 KB
testcase_06 AC 55 ms
75,264 KB
testcase_07 AC 54 ms
75,520 KB
testcase_08 AC 55 ms
75,392 KB
testcase_09 AC 55 ms
75,904 KB
testcase_10 AC 54 ms
75,776 KB
testcase_11 AC 49 ms
73,344 KB
testcase_12 AC 55 ms
75,776 KB
testcase_13 AC 59 ms
77,184 KB
testcase_14 AC 55 ms
75,520 KB
testcase_15 AC 56 ms
75,136 KB
testcase_16 AC 55 ms
75,648 KB
testcase_17 AC 49 ms
73,216 KB
testcase_18 AC 49 ms
73,856 KB
testcase_19 AC 562 ms
127,288 KB
testcase_20 AC 529 ms
111,392 KB
testcase_21 AC 562 ms
112,120 KB
testcase_22 AC 568 ms
127,952 KB
testcase_23 AC 583 ms
127,608 KB
testcase_24 AC 574 ms
127,392 KB
testcase_25 AC 192 ms
100,408 KB
testcase_26 AC 194 ms
99,796 KB
testcase_27 AC 195 ms
99,944 KB
testcase_28 AC 198 ms
99,968 KB
testcase_29 AC 194 ms
99,944 KB
testcase_30 AC 485 ms
113,168 KB
testcase_31 AC 514 ms
114,076 KB
testcase_32 AC 415 ms
105,608 KB
testcase_33 AC 433 ms
105,636 KB
testcase_34 AC 182 ms
102,136 KB
testcase_35 AC 465 ms
118,664 KB
testcase_36 AC 356 ms
109,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n + 1)
        self.size = [1] * (n + 1)
 
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
 
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

MAX = 2 * 10 ** 5
n = int(input())
g = [[] for _ in range(MAX + 1)]
inv = [0] * (MAX + 1)
out = [0] * (MAX + 1)
s = set()
uf = UnionFind(MAX + 1)
for i in range(n):
    h, w = map(int, input().split())
    uf.unite(h, w)
    s.add(h)
    s.add(w)
    g[h].append(w)
    inv[w] += 1
    out[h] += 1
f1 = 0
f2 = 0
v = [0] * (MAX + 1)
cnt = 0
for i in range(MAX + 1):
    j = uf.find(i)
    if j in s and v[j] == 0:
        v[j] = 1
        cnt += 1
    if inv[i] + 1 == out[i]:
        f1 += 1
    elif out[i] + 1 == inv[i]:
        f2 += 1
    elif inv[i] == out[i]:
        continue
    else:
        print(0)
        exit(0)
if cnt >= 2:
    print(0)
    exit(0)
if f1 == f2 == 0:
    print(len(s))
elif f1 == f2 == 1:
    print(1)
else:
    print(0)
0