結果
問題 | No.1059 素敵な集合 |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-04 17:00:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,369 ms / 2,000 ms |
コード長 | 1,660 bytes |
コンパイル時間 | 753 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 78,212 KB |
最終ジャッジ日時 | 2024-05-08 06:27:13 |
合計ジャッジ時間 | 10,997 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,872 KB |
testcase_01 | AC | 1,369 ms
77,864 KB |
testcase_02 | AC | 366 ms
77,208 KB |
testcase_03 | AC | 41 ms
53,260 KB |
testcase_04 | AC | 39 ms
52,800 KB |
testcase_05 | AC | 39 ms
52,400 KB |
testcase_06 | AC | 231 ms
76,908 KB |
testcase_07 | AC | 235 ms
77,264 KB |
testcase_08 | AC | 329 ms
77,592 KB |
testcase_09 | AC | 132 ms
76,832 KB |
testcase_10 | AC | 391 ms
77,476 KB |
testcase_11 | AC | 244 ms
77,380 KB |
testcase_12 | AC | 170 ms
76,936 KB |
testcase_13 | AC | 487 ms
77,740 KB |
testcase_14 | AC | 63 ms
67,120 KB |
testcase_15 | AC | 876 ms
78,176 KB |
testcase_16 | AC | 300 ms
77,240 KB |
testcase_17 | AC | 308 ms
76,996 KB |
testcase_18 | AC | 642 ms
76,824 KB |
testcase_19 | AC | 1,034 ms
77,932 KB |
testcase_20 | AC | 1,023 ms
78,020 KB |
testcase_21 | AC | 916 ms
78,212 KB |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n self.group = n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return self.group -= 1 if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return self.group def all_group_members(self): dic = {r:[] for r in self.roots()} for i in range(self.n): dic[self.find(i)].append(i) return dic def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) l, r = map(int, input().split()) UF = UnionFind(r - l + 1) for i in range(l, r + 1): div = [] for j in range(1, int(i ** 0.5 + 1)): if i % j == 0: if l <= j <= r: div.append(j) j = i // j if l <= j <= r: div.append(j) d0 = div[0] for d in div[1:]: UF.union(d0 - l, d - l) print(UF.group_count() - 1)