結果

問題 No.1605 Matrix Shape
ユーザー tonyu0tonyu0
提出日時 2022-09-21 13:13:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,504 KB
最終ジャッジ日時 2024-12-22 04:03:01
合計ジャッジ時間 22,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
13,696 KB
testcase_01 AC 68 ms
13,696 KB
testcase_02 AC 37 ms
13,696 KB
testcase_03 WA -
testcase_04 AC 36 ms
13,952 KB
testcase_05 AC 69 ms
13,824 KB
testcase_06 WA -
testcase_07 AC 37 ms
13,696 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 38 ms
13,696 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
13,568 KB
testcase_19 AC 1,236 ms
53,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,217 ms
53,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1,082 ms
45,696 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1,138 ms
52,352 KB
testcase_34 WA -
testcase_35 AC 937 ms
45,440 KB
testcase_36 AC 581 ms
33,536 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