結果

問題 No.1605 Matrix Shape
ユーザー hir355hir355
提出日時 2021-07-16 22:07:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,551 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 127,700 KB
最終ジャッジ日時 2024-07-06 09:21:59
合計ジャッジ時間 10,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
75,572 KB
testcase_01 AC 53 ms
76,812 KB
testcase_02 AC 53 ms
77,316 KB
testcase_03 AC 51 ms
75,460 KB
testcase_04 AC 50 ms
77,012 KB
testcase_05 AC 52 ms
76,900 KB
testcase_06 AC 52 ms
76,092 KB
testcase_07 AC 54 ms
75,812 KB
testcase_08 AC 54 ms
76,540 KB
testcase_09 AC 56 ms
76,216 KB
testcase_10 AC 53 ms
76,392 KB
testcase_11 AC 48 ms
74,464 KB
testcase_12 AC 52 ms
76,696 KB
testcase_13 AC 55 ms
78,880 KB
testcase_14 AC 53 ms
75,624 KB
testcase_15 AC 54 ms
75,680 KB
testcase_16 AC 53 ms
75,640 KB
testcase_17 AC 48 ms
74,540 KB
testcase_18 AC 50 ms
74,220 KB
testcase_19 AC 627 ms
127,432 KB
testcase_20 AC 626 ms
111,140 KB
testcase_21 AC 631 ms
112,092 KB
testcase_22 AC 623 ms
127,700 KB
testcase_23 AC 631 ms
127,340 KB
testcase_24 AC 618 ms
127,296 KB
testcase_25 AC 191 ms
100,204 KB
testcase_26 AC 193 ms
100,224 KB
testcase_27 AC 185 ms
100,192 KB
testcase_28 WA -
testcase_29 AC 194 ms
100,184 KB
testcase_30 AC 547 ms
113,504 KB
testcase_31 AC 599 ms
114,004 KB
testcase_32 AC 490 ms
105,744 KB
testcase_33 AC 551 ms
105,612 KB
testcase_34 AC 191 ms
102,004 KB
testcase_35 AC 538 ms
118,708 KB
testcase_36 AC 377 ms
109,564 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 uf.size[j] >= 2 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