結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー kemunikukemuniku
提出日時 2023-08-12 13:43:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 80,052 KB
最終ジャッジ日時 2024-11-14 12:21:04
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,212 KB
testcase_01 AC 39 ms
53,080 KB
testcase_02 AC 38 ms
53,564 KB
testcase_03 AC 177 ms
80,052 KB
testcase_04 AC 87 ms
78,716 KB
testcase_05 AC 210 ms
78,288 KB
testcase_06 AC 146 ms
79,756 KB
testcase_07 AC 203 ms
77,980 KB
testcase_08 AC 143 ms
79,720 KB
testcase_09 AC 241 ms
78,456 KB
testcase_10 AC 196 ms
79,284 KB
testcase_11 AC 170 ms
79,036 KB
testcase_12 AC 143 ms
78,756 KB
testcase_13 AC 142 ms
77,452 KB
testcase_14 AC 156 ms
78,616 KB
testcase_15 AC 112 ms
76,452 KB
testcase_16 AC 242 ms
78,820 KB
testcase_17 AC 121 ms
76,892 KB
testcase_18 AC 136 ms
78,184 KB
testcase_19 AC 82 ms
76,452 KB
testcase_20 AC 128 ms
76,424 KB
testcase_21 AC 136 ms
77,476 KB
testcase_22 AC 158 ms
77,124 KB
testcase_23 AC 37 ms
52,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
class UnionFind():
    def __init__(self, n):
        self.count = n
        self.par = [-1]*n
        self.siz = [1]*n
    def root(self,x):
        if(self.par[x] == -1):
            return x
        else:
            self.par[x] = self.root(self.par[x])
            return self.par[x]
    def issame(self,x,y):
        return self.root(x) == self.root(y)
    def unite(self,x,y):
        x = self.root(x)
        y = self.root(y)
        if(x == y):
            return False
        if(self.siz[x]<self.siz[y]):
            x,y = y,x
        self.par[y] = x
        self.siz[x] += self.siz[y]
        self.count -= 1
        return True
    def size(self,x):
        return self.siz[self.root(x)]
uf = UnionFind(2*N)
for i in range(M):
  A,B = map(int,input().split())
  uf.unite(A-1,B-1)
amari = 0
for i in range(2*N):
  if uf.root(i) == i:
    siz = uf.siz[i]
    amari += siz%2
print(amari//2)
0