結果

問題 No.1605 Matrix Shape
ユーザー H20H20
提出日時 2021-07-18 18:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 1,969 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 84,016 KB
最終ジャッジ日時 2024-07-08 11:50:12
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
65,596 KB
testcase_01 AC 48 ms
64,840 KB
testcase_02 AC 43 ms
63,184 KB
testcase_03 AC 45 ms
65,172 KB
testcase_04 AC 44 ms
65,000 KB
testcase_05 AC 47 ms
65,044 KB
testcase_06 AC 45 ms
64,912 KB
testcase_07 AC 42 ms
64,316 KB
testcase_08 AC 45 ms
64,760 KB
testcase_09 AC 46 ms
64,920 KB
testcase_10 AC 45 ms
66,552 KB
testcase_11 AC 42 ms
64,096 KB
testcase_12 AC 45 ms
65,320 KB
testcase_13 AC 47 ms
65,432 KB
testcase_14 AC 43 ms
65,984 KB
testcase_15 AC 44 ms
64,928 KB
testcase_16 AC 44 ms
65,536 KB
testcase_17 AC 43 ms
64,180 KB
testcase_18 AC 42 ms
63,900 KB
testcase_19 AC 319 ms
82,784 KB
testcase_20 AC 313 ms
82,412 KB
testcase_21 AC 295 ms
82,416 KB
testcase_22 AC 328 ms
82,536 KB
testcase_23 AC 324 ms
82,572 KB
testcase_24 AC 316 ms
83,064 KB
testcase_25 AC 150 ms
80,872 KB
testcase_26 AC 170 ms
81,144 KB
testcase_27 AC 159 ms
81,084 KB
testcase_28 AC 152 ms
80,848 KB
testcase_29 AC 150 ms
80,988 KB
testcase_30 AC 286 ms
82,172 KB
testcase_31 AC 279 ms
81,984 KB
testcase_32 AC 258 ms
82,100 KB
testcase_33 AC 256 ms
81,716 KB
testcase_34 AC 150 ms
84,016 KB
testcase_35 AC 291 ms
82,528 KB
testcase_36 AC 223 ms
81,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
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 members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())


N = int(input())
uf = UnionFind(2*10**5+1)
USE = [0]*(2*10**5+1)
L = [0]*(2*10**5+1)
for i in range(N):
    h,w = map(int, input().split())
    uf.union(h,w)
    USE[h],USE[w]=1,1
    L[h]+=1
    L[w]-=1
root = uf.find(h)
useCnt = sum(USE)
if uf.size(root)==useCnt:
    u = 0
    d = 0
    for i in range(len(L)):
        if abs(L[i])>1:
            print(0)
            exit()
        if L[i]==1:
            u+=1
        if L[i]==-1:
            d+=1
    if u==1 and d==1:
        print(1)
    elif u==0 and d==0:        
        print(useCnt)
    else:
        print(0)
else:
    print(0)

0