結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | prd_xxx |
提出日時 | 2023-08-12 13:42:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 441 ms / 2,000 ms |
コード長 | 1,018 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 37,944 KB |
最終ジャッジ日時 | 2024-11-14 12:20:56 |
合計ジャッジ時間 | 6,365 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 441 ms
37,944 KB |
testcase_04 | AC | 159 ms
27,452 KB |
testcase_05 | AC | 242 ms
23,808 KB |
testcase_06 | AC | 318 ms
33,772 KB |
testcase_07 | AC | 246 ms
24,064 KB |
testcase_08 | AC | 333 ms
35,360 KB |
testcase_09 | AC | 331 ms
27,392 KB |
testcase_10 | AC | 416 ms
37,144 KB |
testcase_11 | AC | 354 ms
35,072 KB |
testcase_12 | AC | 257 ms
26,872 KB |
testcase_13 | AC | 127 ms
19,200 KB |
testcase_14 | AC | 220 ms
24,192 KB |
testcase_15 | AC | 193 ms
20,992 KB |
testcase_16 | AC | 392 ms
32,512 KB |
testcase_17 | AC | 114 ms
16,000 KB |
testcase_18 | AC | 254 ms
31,056 KB |
testcase_19 | AC | 134 ms
26,240 KB |
testcase_20 | AC | 210 ms
22,144 KB |
testcase_21 | AC | 162 ms
20,608 KB |
testcase_22 | AC | 135 ms
17,408 KB |
testcase_23 | AC | 29 ms
10,880 KB |
ソースコード
import sys input = sys.stdin.readline N,M = map(int,input().split()) AB = [tuple(map(int,input().split())) for i in range(M)] class UnionFind: def __init__(self,N): self.parent = [i for i in range(N)] self._size = [1] * N self.count = 0 def root(self,a): if self.parent[a] == a: return a else: self.parent[a] = self.root(self.parent[a]) return self.parent[a] def is_same(self,a,b): return self.root(a) == self.root(b) def unite(self,a,b): ra = self.root(a) rb = self.root(b) if ra == rb: return if self._size[ra] < self._size[rb]: ra,rb = rb,ra self._size[ra] += self._size[rb] self.parent[rb] = ra self.count += 1 def size(self,a): return self._size[self.root(a)] uf = UnionFind(2*N) for a,b in AB: a,b = a-1,b-1 uf.unite(a,b) rs = set() for i in range(2*N): rs.add(uf.root(i)) ans = N for r in rs: ans -= uf.size(r)//2 print(ans)