結果

問題 No.1605 Matrix Shape
ユーザー KazunKazun
提出日時 2021-07-16 22:01:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,803 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,644 KB
実行使用メモリ 126,128 KB
最終ジャッジ日時 2024-07-06 09:11:02
合計ジャッジ時間 5,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 WA -
testcase_03 AC 32 ms
52,736 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 33 ms
52,608 KB
testcase_07 WA -
testcase_08 AC 33 ms
52,608 KB
testcase_09 AC 32 ms
52,864 KB
testcase_10 AC 33 ms
52,608 KB
testcase_11 AC 32 ms
52,864 KB
testcase_12 AC 34 ms
52,352 KB
testcase_13 AC 47 ms
66,688 KB
testcase_14 AC 33 ms
52,992 KB
testcase_15 AC 32 ms
52,352 KB
testcase_16 AC 34 ms
52,608 KB
testcase_17 AC 34 ms
52,608 KB
testcase_18 AC 34 ms
52,864 KB
testcase_19 AC 243 ms
126,128 KB
testcase_20 AC 246 ms
105,048 KB
testcase_21 AC 222 ms
90,204 KB
testcase_22 WA -
testcase_23 AC 243 ms
125,556 KB
testcase_24 AC 210 ms
95,036 KB
testcase_25 AC 163 ms
86,572 KB
testcase_26 AC 163 ms
86,696 KB
testcase_27 AC 165 ms
87,216 KB
testcase_28 WA -
testcase_29 AC 165 ms
86,992 KB
testcase_30 AC 242 ms
104,924 KB
testcase_31 AC 223 ms
90,460 KB
testcase_32 AC 220 ms
95,328 KB
testcase_33 WA -
testcase_34 AC 119 ms
89,816 KB
testcase_35 AC 184 ms
91,024 KB
testcase_36 AC 143 ms
84,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Union_Find():
    __slots__=["n","parents","rank"]
    def __init__(self,N):
        """0,1,...,N-1を要素として初期化する.

        N:要素数
        """
        self.n=N
        self.parents=[-1]*N
        self.rank=[0]*N

    def find(self, x):
        """要素xの属している族を調べる.

        x:要素
        """
        V=[]
        while self.parents[x]>=0:
            V.append(x)
            x=self.parents[x]

        for v in V:
            self.parents[v]=x
        return x

    def union(self, x, y):
        """要素x,yを同一視する.

        x,y:要素
        """
        x=self.find(x)
        y=self.find(y)

        if x==y:
            return

        if self.rank[x]<self.rank[y]:
            x,y=y,x

        self.parents[x]+=self.parents[y]
        self.parents[y]=x

        if self.rank[x]==self.rank[y]:
            self.rank[x]+=1

    def size(self, x):
        """要素xの属している要素の数.

        x:要素
        """
        return -self.parents[self.find(x)]

    def same(self, x, y):
        """要素x,yは同一視されているか?

        x,y:要素
        """
        return self.find(x) == self.find(y)

    def members(self, x):
        """要素xが属している族の要素.
        ※族の要素の個数が欲しいときはsizeを使うこと!!

        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):
        """全ての族の出力
        """
        X={r:[] for r in self.roots()}
        for k in range(self.n):
            X[self.find(k)].append(k)
        return X

    def refresh(self):
        for i in range(self.n):
            _=self.find(i)

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

    def __repr__(self):
        return self.__str__()
#=================================================
import sys

input=sys.stdin.readline
N=int(input())

M=0
S=[]
for _ in range(N):
    h,w=map(int,input().split())

    M=max(M,h,w)
    S.append((h,w))

U=Union_Find(M+1)
for h,w in S:
    U.union(h,w)

T=set()
for h,_ in S:
    T.add(U.find(h))

if len(T)>=2:
    print(0)

deg=[0]*(M+1)
for h,w in S:
    deg[h]+=1
    deg[w]-=1

M=[d==0 for d in deg]
if all([d==0 for d in deg]):
    K=set()
    for h,w in S:
        K.add(h)
        K.add(w)

    print(len(K))
    exit()

p=q=0
for d in deg:
    if d==1:
        p+=1
    if d==-1:
        q+=1

if p==q==1:
    print(1)
else:
    print(0)
0