結果
問題 | No.1059 素敵な集合 |
ユーザー | Mister |
提出日時 | 2020-05-20 00:19:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 870 bytes |
コンパイル時間 | 822 ms |
コンパイル使用メモリ | 82,288 KB |
実行使用メモリ | 95,156 KB |
最終ジャッジ日時 | 2024-10-01 23:22:16 |
合計ジャッジ時間 | 4,363 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
59,240 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
class UnionFind: def __init__(self, n): self.size = [1 for i in range(n)] self.par = [i for i in range(n)] def find(self, v): if self.par[v] == v: return v else: self.par[v] = self.find(self.par[v]) return self.par[v] def unite(self, u, v): u = self.find(u) v = self.find(v) if self.size[v] < self.size[v]: u, v = v, u self.size[u] += self.size[v] self.par[v] = u lr = list(map(int, input().split())) if len(lr) != 2: exit(1) l, r = lr if l < 1 or l >= r or 200000 < r: exit(1) uf = UnionFind(r + 1) for i in range(l, r + 1): x = l * 2 while x <= r: uf.unite(l, x) x += l ans = 0 for x in range(l, r): if uf.find(x) != uf.find(x + 1): ans += 1 uf.unite(x, x + 1) print(ans)