結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 13:15:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 120,476 KB
最終ジャッジ日時 2024-06-01 17:20:52
合計ジャッジ時間 12,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,664 KB
testcase_01 AC 48 ms
61,424 KB
testcase_02 AC 41 ms
55,964 KB
testcase_03 AC 48 ms
62,116 KB
testcase_04 AC 41 ms
55,748 KB
testcase_05 AC 48 ms
62,420 KB
testcase_06 AC 47 ms
61,448 KB
testcase_07 AC 41 ms
56,412 KB
testcase_08 AC 49 ms
61,240 KB
testcase_09 AC 49 ms
61,760 KB
testcase_10 AC 48 ms
63,216 KB
testcase_11 WA -
testcase_12 AC 49 ms
61,332 KB
testcase_13 AC 48 ms
60,712 KB
testcase_14 AC 48 ms
62,000 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 584 ms
120,476 KB
testcase_20 AC 685 ms
109,488 KB
testcase_21 AC 683 ms
108,928 KB
testcase_22 AC 561 ms
117,392 KB
testcase_23 AC 574 ms
117,912 KB
testcase_24 AC 574 ms
117,664 KB
testcase_25 AC 374 ms
101,500 KB
testcase_26 AC 368 ms
101,796 KB
testcase_27 AC 371 ms
101,520 KB
testcase_28 AC 370 ms
101,852 KB
testcase_29 AC 392 ms
101,568 KB
testcase_30 AC 653 ms
111,104 KB
testcase_31 AC 660 ms
111,140 KB
testcase_32 AC 692 ms
108,404 KB
testcase_33 AC 681 ms
108,408 KB
testcase_34 AC 257 ms
99,360 KB
testcase_35 WA -
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):
    st=set()
    for i in range(M):
        st.add(deg[i])
    if len(st) > 2:
        print(1)
    else:print(len(V))
else:
    print(0)
0