結果
問題 | No.1059 素敵な集合 |
ユーザー | irumo8202 |
提出日時 | 2022-01-25 16:54:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,279 ms / 2,000 ms |
コード長 | 1,466 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-05-09 17:03:00 |
合計ジャッジ時間 | 7,582 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
11,008 KB |
testcase_01 | AC | 1,279 ms
12,416 KB |
testcase_02 | AC | 160 ms
11,904 KB |
testcase_03 | AC | 27 ms
10,880 KB |
testcase_04 | AC | 26 ms
11,008 KB |
testcase_05 | AC | 27 ms
10,880 KB |
testcase_06 | AC | 132 ms
11,520 KB |
testcase_07 | AC | 127 ms
11,392 KB |
testcase_08 | AC | 180 ms
11,776 KB |
testcase_09 | AC | 61 ms
11,136 KB |
testcase_10 | AC | 260 ms
11,648 KB |
testcase_11 | AC | 143 ms
11,520 KB |
testcase_12 | AC | 86 ms
11,264 KB |
testcase_13 | AC | 285 ms
12,160 KB |
testcase_14 | AC | 36 ms
11,136 KB |
testcase_15 | AC | 491 ms
12,672 KB |
testcase_16 | AC | 170 ms
11,648 KB |
testcase_17 | AC | 151 ms
11,776 KB |
testcase_18 | AC | 166 ms
12,416 KB |
testcase_19 | AC | 1,248 ms
12,416 KB |
testcase_20 | AC | 1,194 ms
12,544 KB |
testcase_21 | AC | 509 ms
12,928 KB |
ソースコード
from collections import defaultdict 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): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members L, R = map(int, input().split()) size = R - L + 1 uf = UnionFind(R + 1) for i in range(L, R + 1): for j in range(i + i, R + 1, i): uf.union(i, j) ans = 0 for i in range(L, R): if uf.same(i, i + 1): continue uf.union(i, i + 1) ans += 1 print(ans)