結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,992 KB
testcase_01 AC 46 ms
61,112 KB
testcase_02 AC 41 ms
56,064 KB
testcase_03 AC 45 ms
61,980 KB
testcase_04 AC 42 ms
55,924 KB
testcase_05 AC 45 ms
61,372 KB
testcase_06 AC 45 ms
61,568 KB
testcase_07 AC 43 ms
56,584 KB
testcase_08 AC 46 ms
61,964 KB
testcase_09 AC 46 ms
62,160 KB
testcase_10 AC 45 ms
60,968 KB
testcase_11 AC 45 ms
61,312 KB
testcase_12 AC 46 ms
61,232 KB
testcase_13 AC 46 ms
62,392 KB
testcase_14 AC 45 ms
61,484 KB
testcase_15 AC 45 ms
61,996 KB
testcase_16 AC 46 ms
62,164 KB
testcase_17 AC 45 ms
61,160 KB
testcase_18 AC 46 ms
61,792 KB
testcase_19 AC 586 ms
120,444 KB
testcase_20 AC 681 ms
109,268 KB
testcase_21 AC 692 ms
109,500 KB
testcase_22 AC 577 ms
117,560 KB
testcase_23 AC 582 ms
117,916 KB
testcase_24 AC 576 ms
117,388 KB
testcase_25 AC 379 ms
101,756 KB
testcase_26 AC 373 ms
101,796 KB
testcase_27 AC 374 ms
101,648 KB
testcase_28 AC 374 ms
101,716 KB
testcase_29 AC 389 ms
101,828 KB
testcase_30 AC 668 ms
111,088 KB
testcase_31 AC 673 ms
111,012 KB
testcase_32 AC 695 ms
108,628 KB
testcase_33 AC 677 ms
108,872 KB
testcase_34 AC 248 ms
99,620 KB
testcase_35 AC 494 ms
117,768 KB
testcase_36 AC 389 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