結果

問題 No.1605 Matrix Shape
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-16 23:31:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,792 KB
最終ジャッジ日時 2024-07-06 11:09:07
合計ジャッジ時間 6,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,592 KB
testcase_01 AC 42 ms
62,592 KB
testcase_02 AC 39 ms
62,208 KB
testcase_03 AC 41 ms
62,336 KB
testcase_04 AC 38 ms
62,208 KB
testcase_05 AC 41 ms
62,976 KB
testcase_06 AC 41 ms
62,976 KB
testcase_07 AC 40 ms
61,952 KB
testcase_08 AC 41 ms
62,464 KB
testcase_09 AC 41 ms
63,232 KB
testcase_10 AC 41 ms
63,232 KB
testcase_11 AC 40 ms
62,336 KB
testcase_12 AC 41 ms
62,336 KB
testcase_13 AC 42 ms
62,720 KB
testcase_14 AC 41 ms
62,976 KB
testcase_15 AC 42 ms
62,464 KB
testcase_16 AC 42 ms
62,592 KB
testcase_17 AC 40 ms
61,824 KB
testcase_18 AC 46 ms
62,208 KB
testcase_19 AC 282 ms
81,908 KB
testcase_20 AC 272 ms
81,724 KB
testcase_21 AC 271 ms
82,244 KB
testcase_22 AC 275 ms
82,444 KB
testcase_23 AC 283 ms
82,304 KB
testcase_24 AC 307 ms
82,116 KB
testcase_25 AC 153 ms
80,896 KB
testcase_26 AC 160 ms
80,640 KB
testcase_27 AC 148 ms
80,620 KB
testcase_28 AC 147 ms
80,576 KB
testcase_29 AC 149 ms
81,188 KB
testcase_30 AC 255 ms
82,136 KB
testcase_31 AC 254 ms
81,596 KB
testcase_32 AC 243 ms
81,920 KB
testcase_33 AC 240 ms
81,464 KB
testcase_34 AC 145 ms
83,792 KB
testcase_35 AC 263 ms
81,664 KB
testcase_36 AC 202 ms
81,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]
n = int(input())
M = 2*10**5+5
count = [0]*M
use = [0]*M
uf = Unionfind(M)
for i in range(n):
    h,w = map(int,input().split())
    count[h] += 1
    count[w] -= 1
    use[h] = 1
    use[w] = 1
    uf.union(h,w)
p = 0
m = 0
for i in range(M):
    if use[i]:
        if uf.size(i) != sum(use):
            print(0)
            exit()
        else:
            break
for i in range(M):
    if use[i]:
        if count[i] == 0:
            continue
        if abs(count[i]) != 1:
            print(0)
            exit()
        if count[i] == 1:
            p += 1
        else:
            m += 1
if p == m == 0:
    print(sum(use))
elif p == m == 1:
    print(1)
else:
    print(0)
0