結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | gr1msl3y |
提出日時 | 2023-08-16 00:25:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,092 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 103,092 KB |
最終ジャッジ日時 | 2024-05-03 10:34:36 |
合計ジャッジ時間 | 4,937 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,972 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 106 ms
76,316 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 125 ms
76,452 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1]*n self.rank = [0]*n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def issame(self, x, y): return self.find(x)==self.find(y) def size(self, x): return -self.parents[self.find(x)] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.rank[x] < self.rank[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x if self.rank[x] == self.rank[y]: self.rank[x] += 1 def root(self): return [i for i in range(self.n) if self.parents[i]<0] n,m=map(int,input().split()) uf=UnionFind(2*n) for _ in range(m): a,b=map(int,input().split()) a-=1 b-=1 uf.union(a,b) ans=0 seen=set() for i in range(2*n): if i in seen: continue v=uf.find(i) seen.add(v) ans+=uf.size(v)%2 print(ans)