結果

問題 No.2202 贅沢てりたまチキン
ユーザー titiatitia
提出日時 2023-02-03 23:13:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 769 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-07-02 21:18:26
合計ジャッジ時間 9,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 60 ms
29,568 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 676 ms
29,568 KB
testcase_15 AC 669 ms
29,568 KB
testcase_16 AC 581 ms
29,568 KB
testcase_17 AC 620 ms
29,568 KB
testcase_18 AC 331 ms
20,096 KB
testcase_19 AC 346 ms
29,696 KB
testcase_20 WA -
testcase_21 AC 647 ms
29,440 KB
testcase_22 AC 373 ms
10,752 KB
testcase_23 AC 449 ms
11,392 KB
testcase_24 AC 429 ms
11,008 KB
testcase_25 AC 928 ms
29,696 KB
testcase_26 WA -
testcase_27 AC 678 ms
29,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

# UnionFind

Group = [i for i in range(2*N+1)] # グループ分け
Nodes = [1]*(2*N+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 i in range(M):
    a,b=map(int,input().split())
    Union(a,b+N)
    Union(a+N,b)

if Nodes[find(1)]==2*N:
    print("Yes")
else:
    print("No")
0