結果
問題 |
No.1059 素敵な集合
|
ユーザー |
![]() |
提出日時 | 2020-12-08 20:59:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 1,539 ms / 2,000 ms |
コード長 | 1,106 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-09-18 18:39:47 |
合計ジャッジ時間 | 9,069 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
class UF_tree: def __init__(self, n): self.root = [-1] * (n + 1) self.rank = [0] * (n + 1) def find(self, x): if self.root[x] < 0: return x else: self.root[x] = self.find(self.root[x]) return self.root[x] def isSame(self, x, y): return self.find(x) == self.find(y) def unite(self, x, y): x = self.find(x) y = self.find(y) if x == y: return elif self.rank[x] < self.rank[y]: self.root[y] += self.root[x] self.root[x] = y else: self.root[x] += self.root[y] self.root[y] = x if self.rank[x] == self.rank[y]: self.rank[x] += 1 def size(self, x): return - self.root[self.find(x)] L, R = map(int, input().split()) size = R - L + 1 uf = UF_tree(R + 1) for i in range(L, R + 1): v = i * 2 while v <= R: uf.unite(i, v) v += i cost = 0 for i in range(L, R): if uf.isSame(i, i + 1): continue uf.unite(i, i + 1) cost += 1 print(cost)