結果
問題 | No.1059 素敵な集合 |
ユーザー | Mister |
提出日時 | 2020-05-22 20:31:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 867 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 55,252 KB |
最終ジャッジ日時 | 2024-10-05 11:53:05 |
合計ジャッジ時間 | 5,264 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 439 ms
48,988 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 | -- | - |
ソースコード
# numpyチャレンジ import numpy as np class UnionFind: def __init__(self, n): self.par = np.array([i for i in range(n)]) self.size = np.ones(n) def find(self, v): if v == self.par[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 u == v: return if self.size[u] < self.size[v]: u, v = v, u self.size[u] += self.size[v] self.par[v] = u l, r = list(map(int, input().split())) uf = UnionFind(r + 1) for x in range(l, r + 1): y = x * 2 while y <= r: uf.unite(x, y) y += x 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)