結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | gr1msl3y |
提出日時 | 2023-08-16 00:28:41 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 264 ms / 2,000 ms |
コード長 | 1,095 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 82,856 KB |
実行使用メモリ | 102,800 KB |
最終ジャッジ日時 | 2024-11-14 12:25:00 |
合計ジャッジ時間 | 4,787 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,696 KB |
testcase_01 | AC | 37 ms
53,852 KB |
testcase_02 | AC | 37 ms
52,000 KB |
testcase_03 | AC | 213 ms
94,108 KB |
testcase_04 | AC | 110 ms
99,540 KB |
testcase_05 | AC | 221 ms
79,464 KB |
testcase_06 | AC | 170 ms
95,976 KB |
testcase_07 | AC | 204 ms
77,840 KB |
testcase_08 | AC | 173 ms
102,800 KB |
testcase_09 | AC | 240 ms
80,496 KB |
testcase_10 | AC | 229 ms
92,332 KB |
testcase_11 | AC | 200 ms
90,952 KB |
testcase_12 | AC | 162 ms
90,184 KB |
testcase_13 | AC | 145 ms
80,084 KB |
testcase_14 | AC | 174 ms
85,552 KB |
testcase_15 | AC | 113 ms
76,676 KB |
testcase_16 | AC | 264 ms
83,956 KB |
testcase_17 | AC | 119 ms
76,656 KB |
testcase_18 | AC | 152 ms
93,324 KB |
testcase_19 | AC | 96 ms
96,488 KB |
testcase_20 | AC | 120 ms
76,420 KB |
testcase_21 | AC | 146 ms
81,640 KB |
testcase_22 | AC | 165 ms
77,236 KB |
testcase_23 | AC | 37 ms
52,948 KB |
ソースコード
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): v=uf.find(i) if v in seen: continue seen.add(v) ans+=uf.size(v)%2 print(ans//2)