結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 13:30:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 120,336 KB
最終ジャッジ日時 2024-12-22 04:04:17
合計ジャッジ時間 12,008 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,984 KB
testcase_01 AC 44 ms
61,056 KB
testcase_02 AC 42 ms
55,168 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 41 ms
55,296 KB
testcase_05 AC 44 ms
61,056 KB
testcase_06 AC 44 ms
61,056 KB
testcase_07 AC 40 ms
54,912 KB
testcase_08 AC 45 ms
61,148 KB
testcase_09 AC 48 ms
61,012 KB
testcase_10 AC 44 ms
61,312 KB
testcase_11 AC 45 ms
60,416 KB
testcase_12 AC 44 ms
61,056 KB
testcase_13 AC 48 ms
61,184 KB
testcase_14 AC 44 ms
60,672 KB
testcase_15 AC 44 ms
60,288 KB
testcase_16 AC 44 ms
60,972 KB
testcase_17 AC 43 ms
60,544 KB
testcase_18 AC 44 ms
60,672 KB
testcase_19 AC 582 ms
120,336 KB
testcase_20 AC 679 ms
109,176 KB
testcase_21 AC 687 ms
109,596 KB
testcase_22 AC 566 ms
117,592 KB
testcase_23 AC 575 ms
117,752 KB
testcase_24 AC 577 ms
117,392 KB
testcase_25 AC 376 ms
101,356 KB
testcase_26 AC 367 ms
101,788 KB
testcase_27 AC 382 ms
101,396 KB
testcase_28 AC 380 ms
101,716 KB
testcase_29 AC 394 ms
101,188 KB
testcase_30 AC 655 ms
110,704 KB
testcase_31 AC 660 ms
110,888 KB
testcase_32 AC 705 ms
108,388 KB
testcase_33 AC 688 ms
108,404 KB
testcase_34 AC 252 ms
99,892 KB
testcase_35 AC 495 ms
117,284 KB
testcase_36 AC 404 ms
101,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

M=200001
par=[-1]*M
def root(a):
    if par[a]<0:
        return a
    return root(par[a])
def same(a, b):
    return root(a)==root(b)
def merge(a,b):
    if same(a,b):return
    a=root(a)
    b=root(b)
    if par[a]>par[b]:a,b=b,a
    par[a]+=par[b]
    par[b]=a
def sz(a):
    return -par[root(a)]

a=[list(map(lambda x:int(x)-1, input().split())) for i in range(n)]
deg = [0]*M
V=set()
for x,y in a:
    merge(x,y)
    V.add(x)
    V.add(y)
    deg[x]-=1
    deg[y]+=1
if sz(a[0][0]) == len(V):
    # とりあえず連結
    start=0
    end=0
    out=0
    for x in deg:
        if x==1:
            end+=1
        elif x==-1:
            start+=1
        elif x!=0:
            out+=1
    if out>0:print(0)
    elif start==1 and end==1:print(1)
    elif start==0 and end==0:print(len(V))
    else: print(0)
else:
    print(0)
0