結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー pありpあり
提出日時 2023-08-12 13:51:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 94,964 KB
最終ジャッジ日時 2024-11-14 12:22:10
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,548 KB
testcase_01 AC 42 ms
55,704 KB
testcase_02 AC 42 ms
55,252 KB
testcase_03 AC 279 ms
94,964 KB
testcase_04 AC 146 ms
86,276 KB
testcase_05 AC 186 ms
85,296 KB
testcase_06 AC 223 ms
91,572 KB
testcase_07 AC 182 ms
83,748 KB
testcase_08 AC 234 ms
94,316 KB
testcase_09 AC 226 ms
87,804 KB
testcase_10 AC 274 ms
93,760 KB
testcase_11 AC 245 ms
91,964 KB
testcase_12 AC 199 ms
88,708 KB
testcase_13 AC 139 ms
81,984 KB
testcase_14 AC 187 ms
85,888 KB
testcase_15 AC 131 ms
79,036 KB
testcase_16 AC 256 ms
91,136 KB
testcase_17 AC 113 ms
78,900 KB
testcase_18 AC 199 ms
88,852 KB
testcase_19 AC 131 ms
85,108 KB
testcase_20 AC 138 ms
79,136 KB
testcase_21 AC 148 ms
83,556 KB
testcase_22 AC 130 ms
80,292 KB
testcase_23 AC 42 ms
54,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int, input().split())

g = [[] for _ in range(2*n)]

for _ in range(m):
  a,b = map(int, input().split())
  a,b = a-1,b-1
  g[a].append(b)
  g[b].append(a)
  
c = [-1 for _ in range(2*n)]
cnow = 0
for i in range(2*n):
  if(c[i]!=-1):
    continue
    
  c[i] = cnow
  d = deque([i])
  while(d):
    now = d.pop()
    for v in g[now]:
      if(c[v]==-1):
        d.append(v)
        c[v] = cnow
  cnow+=1
  
count = [0 for _ in range(cnow)]
for i in c:
  count[i]+=1
  
for i in range(cnow):
  count[i]%=2
  
ans = sum(count)//2
print(ans)
    
  
  
  
  
  

0