結果

問題 No.2202 贅沢てりたまチキン
ユーザー titiatitia
提出日時 2023-02-03 23:16:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,093 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-07-02 21:22:29
合計ジャッジ時間 11,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 31 ms
10,496 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,496 KB
testcase_08 AC 33 ms
10,496 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 73 ms
29,568 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 758 ms
29,532 KB
testcase_15 AC 750 ms
29,440 KB
testcase_16 AC 673 ms
29,440 KB
testcase_17 AC 750 ms
29,568 KB
testcase_18 AC 352 ms
19,968 KB
testcase_19 AC 384 ms
29,440 KB
testcase_20 AC 765 ms
29,312 KB
testcase_21 AC 783 ms
29,440 KB
testcase_22 AC 410 ms
10,752 KB
testcase_23 AC 486 ms
11,264 KB
testcase_24 AC 460 ms
10,752 KB
testcase_25 AC 1,093 ms
29,440 KB
testcase_26 AC 843 ms
29,568 KB
testcase_27 AC 758 ms
29,568 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)

for i in range(1,N+1):
    if find(i)!=find(i+N):
        print("No")
        break
else:
    print("Yes")
0