結果

問題 No.1059 素敵な集合
ユーザー MisterMister
提出日時 2020-05-20 00:36:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 792 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 81,392 KB
最終ジャッジ日時 2024-07-23 09:24:40
合計ジャッジ時間 4,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,156 KB
testcase_01 AC 76 ms
69,728 KB
testcase_02 AC 160 ms
78,328 KB
testcase_03 AC 37 ms
53,616 KB
testcase_04 AC 37 ms
53,204 KB
testcase_05 AC 36 ms
53,336 KB
testcase_06 AC 157 ms
78,596 KB
testcase_07 AC 147 ms
77,724 KB
testcase_08 AC 171 ms
79,280 KB
testcase_09 AC 121 ms
77,060 KB
testcase_10 AC 194 ms
79,040 KB
testcase_11 AC 157 ms
78,080 KB
testcase_12 AC 148 ms
77,932 KB
testcase_13 AC 187 ms
79,092 KB
testcase_14 AC 56 ms
68,148 KB
testcase_15 AC 203 ms
80,332 KB
testcase_16 AC 161 ms
78,044 KB
testcase_17 AC 157 ms
78,236 KB
testcase_18 AC 52 ms
68,020 KB
testcase_19 AC 300 ms
81,392 KB
testcase_20 AC 284 ms
80,772 KB
testcase_21 AC 212 ms
80,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# マージテクさぼったver.
class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n)]
        self.size = [1 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 u == v:
            return

        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)
0