結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 13:13:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-06-01 17:20:39
合計ジャッジ時間 22,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
13,952 KB
testcase_01 AC 68 ms
13,952 KB
testcase_02 AC 36 ms
14,080 KB
testcase_03 WA -
testcase_04 AC 36 ms
13,952 KB
testcase_05 AC 67 ms
13,952 KB
testcase_06 WA -
testcase_07 AC 36 ms
13,952 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 36 ms
13,952 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 36 ms
14,080 KB
testcase_19 AC 1,249 ms
53,632 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,196 ms
53,632 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,068 ms
45,952 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1,103 ms
52,736 KB
testcase_34 WA -
testcase_35 AC 916 ms
45,696 KB
testcase_36 AC 575 ms
33,792 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
for x,y in a:
    merge(x,y)
    deg[x]-=1
    deg[y]+=1
if sz(a[0][0]) == n:
    st=set()
    for i in range(M):
        st.add(deg[i])
    if len(st) > 2:
        print(1)
    else:print(n)
else:
    print(0)
0