結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー titiatitia
提出日時 2023-08-17 00:37:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-11-14 12:25:08
合計ジャッジ時間 7,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 519 ms
19,584 KB
testcase_04 AC 135 ms
17,536 KB
testcase_05 AC 344 ms
14,336 KB
testcase_06 AC 359 ms
18,688 KB
testcase_07 AC 359 ms
13,824 KB
testcase_08 AC 357 ms
20,224 KB
testcase_09 AC 448 ms
15,360 KB
testcase_10 AC 516 ms
18,816 KB
testcase_11 AC 441 ms
18,176 KB
testcase_12 AC 308 ms
16,768 KB
testcase_13 AC 161 ms
13,056 KB
testcase_14 AC 281 ms
15,232 KB
testcase_15 AC 291 ms
11,008 KB
testcase_16 AC 522 ms
16,896 KB
testcase_17 AC 157 ms
11,264 KB
testcase_18 AC 283 ms
17,408 KB
testcase_19 AC 107 ms
17,024 KB
testcase_20 AC 294 ms
11,008 KB
testcase_21 AC 188 ms
13,952 KB
testcase_22 AC 195 ms
12,160 KB
testcase_23 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)

ANS=0

for i in range(1,2*N+1):
    if find(i)==i:
        ANS+=Nodes[i]%2

print(ANS//2)
0