結果
問題 | No.1390 Get together |
ユーザー | gorugo30 |
提出日時 | 2021-02-12 21:40:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 936 bytes |
コンパイル時間 | 129 ms |
コンパイル使用メモリ | 82,084 KB |
実行使用メモリ | 119,652 KB |
最終ジャッジ日時 | 2024-07-19 20:43:13 |
合計ジャッジ時間 | 7,162 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 33 ms
51,968 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 34 ms
51,840 KB |
testcase_16 | AC | 268 ms
101,760 KB |
testcase_17 | AC | 236 ms
119,652 KB |
testcase_18 | AC | 259 ms
104,304 KB |
testcase_19 | AC | 311 ms
112,728 KB |
testcase_20 | AC | 289 ms
112,196 KB |
testcase_21 | AC | 280 ms
111,832 KB |
testcase_22 | AC | 276 ms
107,924 KB |
testcase_23 | AC | 285 ms
109,340 KB |
testcase_24 | AC | 310 ms
109,620 KB |
testcase_25 | AC | 312 ms
113,212 KB |
testcase_26 | AC | 303 ms
112,624 KB |
testcase_27 | AC | 310 ms
112,396 KB |
testcase_28 | AC | 300 ms
112,512 KB |
testcase_29 | AC | 318 ms
112,356 KB |
testcase_30 | AC | 306 ms
112,688 KB |
testcase_31 | AC | 305 ms
112,084 KB |
ソースコード
class UnionFind: def __init__(self, N): self.par = [-1] * N self.size = [1] * N def root(self, x): while self.par[x] >= 0: x = self.par[x] return x def union(self, x, y): rx = self.root(x) ry = self.root(y) if rx == ry: return if self.size[rx] < self.size[ry]: rx, ry = ry, rx self.par[ry] = rx self.size[rx] += self.size[ry] def find(self, x, y): return self.root(x) == self.root(y) N, M = map(int, input().split()) box = UnionFind(M + 1) bi = {} info = [list(map(int, input().split())) for i in range(M)] for i in range(M): b, c = info[i] if bi.get(c, 0) == 0: bi[c] = b else: box.union(b, bi[c]) ans = 0 done = [False] * (M + 1) for i in range(1, M + 1): p = box.root(i) if not done[p]: ans += box.size[p] - 1 done[p] = True print(ans)