結果
問題 | No.1059 素敵な集合 |
ユーザー | ntuda |
提出日時 | 2021-10-05 21:39:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 118 ms / 2,000 ms |
コード長 | 1,398 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 78,376 KB |
最終ジャッジ日時 | 2024-07-23 02:35:38 |
合計ジャッジ時間 | 2,860 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,072 KB |
testcase_01 | AC | 39 ms
54,420 KB |
testcase_02 | AC | 97 ms
76,604 KB |
testcase_03 | AC | 38 ms
52,504 KB |
testcase_04 | AC | 38 ms
53,504 KB |
testcase_05 | AC | 38 ms
53,472 KB |
testcase_06 | AC | 95 ms
76,864 KB |
testcase_07 | AC | 103 ms
76,368 KB |
testcase_08 | AC | 100 ms
76,664 KB |
testcase_09 | AC | 87 ms
76,164 KB |
testcase_10 | AC | 97 ms
76,676 KB |
testcase_11 | AC | 100 ms
76,612 KB |
testcase_12 | AC | 93 ms
76,080 KB |
testcase_13 | AC | 101 ms
76,900 KB |
testcase_14 | AC | 47 ms
61,184 KB |
testcase_15 | AC | 109 ms
77,696 KB |
testcase_16 | AC | 108 ms
76,356 KB |
testcase_17 | AC | 100 ms
76,512 KB |
testcase_18 | AC | 47 ms
65,784 KB |
testcase_19 | AC | 118 ms
77,904 KB |
testcase_20 | AC | 109 ms
77,340 KB |
testcase_21 | AC | 111 ms
78,376 KB |
ソースコード
class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * 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 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 len(self.roots()) def all_group_members(self): return {r: self.members(r) for r in self.roots()} 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) import sys if L == 1: print(0) sys.exit() for i in range(2, R // L + 1): j = L while j * i <= R: uf.union(j-L,j*i-L) j += 1 ans = 0 print(len(uf.roots())-1)