結果
問題 | No.1390 Get together |
ユーザー | teruyo14 |
提出日時 | 2022-12-11 20:31:47 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,094 bytes |
コンパイル時間 | 373 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 106,636 KB |
最終ジャッジ日時 | 2024-10-15 16:15:47 |
合計ジャッジ時間 | 19,719 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,224 KB |
testcase_01 | AC | 42 ms
52,224 KB |
testcase_02 | AC | 42 ms
52,352 KB |
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 | AC | 42 ms
51,840 KB |
testcase_15 | AC | 41 ms
52,352 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 962 ms
104,948 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 934 ms
105,360 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
class UnionFind(): def __init__(self,n): self.par = [-1] * n self.rank = [0] * 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): rx = self.root(x) ry = self.root(y) if rx == ry: return False if self.rank[rx] < self.rank[ry]: rx,ry = ry,rx self.par[ry] = rx if self.rank[rx] == self.rank[ry]: self.rank[rx] += 1 self.siz[rx] += self.siz[ry] return True def size(self,x): return self.siz[self.root(x)] N,M = map(int,input().split()) uf = UnionFind(N+1) color = [] for _ in range(N): b,c = map(int,input().split()) color.append([c,b]) color.sort() cnt = 0 for i in range(1,N): if color[i][0] == color[i-1][0]: uf.unite(color[i][1],color[i-1][1]) cnt += 1 print(cnt)