結果

問題 No.1605 Matrix Shape
ユーザー titiatitia
提出日時 2021-07-17 01:55:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,371 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 85,576 KB
最終ジャッジ日時 2024-07-06 13:10:29
合計ジャッジ時間 15,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
21,632 KB
testcase_01 AC 74 ms
21,760 KB
testcase_02 AC 42 ms
21,760 KB
testcase_03 AC 76 ms
21,632 KB
testcase_04 AC 42 ms
21,760 KB
testcase_05 AC 72 ms
21,888 KB
testcase_06 AC 75 ms
21,760 KB
testcase_07 AC 43 ms
21,632 KB
testcase_08 AC 74 ms
21,888 KB
testcase_09 AC 72 ms
21,632 KB
testcase_10 AC 74 ms
21,760 KB
testcase_11 WA -
testcase_12 AC 74 ms
21,760 KB
testcase_13 AC 74 ms
21,760 KB
testcase_14 AC 74 ms
21,632 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 902 ms
85,576 KB
testcase_20 AC 881 ms
68,884 KB
testcase_21 AC 728 ms
48,384 KB
testcase_22 AC 596 ms
48,384 KB
testcase_23 AC 898 ms
85,404 KB
testcase_24 AC 818 ms
48,384 KB
testcase_25 AC 589 ms
42,624 KB
testcase_26 AC 573 ms
42,880 KB
testcase_27 AC 530 ms
41,216 KB
testcase_28 AC 442 ms
41,088 KB
testcase_29 AC 546 ms
41,216 KB
testcase_30 AC 732 ms
68,868 KB
testcase_31 AC 675 ms
48,384 KB
testcase_32 AC 655 ms
58,300 KB
testcase_33 AC 575 ms
48,000 KB
testcase_34 AC 472 ms
48,896 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# なぜか、「終点と終点の前の頂点」の組としてありうる個数を数えようとしていたのはおかしい。
# 行列の積なんだから始点と終点です。はい。
# その後の考察もおかしかった。オイラー路に対する理解もおかしかった。

import sys
input = sys.stdin.readline

N=int(input())
HW=[tuple(map(int,input().split())) for i in range(N)]

DEG=[0]*(2*10**5+1)

# UnionFind

Group = [i for i in range(2*10**5+1)] # グループ分け
Nodes = [1]*(2*10**5+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for h,w in HW:
    Union(h,w)
    DEG[h]+=1
    DEG[w]-=1

X=find(HW[0][0])

for h,w in HW:
    if find(h)!=X or find(w)!=X:
        print(0)
        exit()

one=0
minus=0

for i in range(2*10**5+1):
    if DEG[i]==1:
        one+=1
    elif DEG[i]==-1:
        minus+=1

if one==0 and minus==0:
    print(len(set([h for h,w in HW])|set([w for h,w in HW])))
else:
    print(1)




0