結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 13:27:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 120,576 KB
最終ジャッジ日時 2024-06-01 17:21:17
合計ジャッジ時間 12,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,664 KB
testcase_01 AC 45 ms
60,672 KB
testcase_02 AC 43 ms
55,040 KB
testcase_03 AC 46 ms
61,184 KB
testcase_04 AC 42 ms
55,680 KB
testcase_05 AC 46 ms
60,416 KB
testcase_06 AC 46 ms
61,056 KB
testcase_07 AC 43 ms
55,600 KB
testcase_08 AC 46 ms
61,312 KB
testcase_09 AC 45 ms
61,312 KB
testcase_10 AC 46 ms
60,544 KB
testcase_11 WA -
testcase_12 AC 46 ms
60,544 KB
testcase_13 AC 47 ms
61,056 KB
testcase_14 AC 45 ms
60,800 KB
testcase_15 AC 46 ms
60,800 KB
testcase_16 AC 46 ms
61,056 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 598 ms
120,576 KB
testcase_20 AC 700 ms
109,272 KB
testcase_21 AC 705 ms
109,636 KB
testcase_22 AC 586 ms
117,896 KB
testcase_23 AC 601 ms
117,612 KB
testcase_24 AC 605 ms
117,524 KB
testcase_25 AC 387 ms
101,620 KB
testcase_26 AC 386 ms
101,660 KB
testcase_27 AC 386 ms
101,520 KB
testcase_28 AC 381 ms
101,700 KB
testcase_29 AC 401 ms
101,700 KB
testcase_30 AC 683 ms
110,964 KB
testcase_31 AC 689 ms
110,884 KB
testcase_32 AC 709 ms
108,128 KB
testcase_33 AC 702 ms
108,528 KB
testcase_34 AC 259 ms
99,968 KB
testcase_35 AC 506 ms
117,760 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    for x in deg:
        if x==1:
            end+=1
        elif x==-1:
            start+=1
    if start==1 and end==1:print(1)
    elif start==0 and end==0:print(len(V))
    else: print(0)
else:
    print(0)
0