結果

問題 No.1059 素敵な集合
ユーザー tpynerivertpyneriver
提出日時 2020-05-23 09:41:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,655 ms / 2,000 ms
コード長 1,006 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 369,020 KB
最終ジャッジ日時 2024-07-23 09:37:24
合計ジャッジ時間 9,400 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,264 KB
testcase_01 AC 1,615 ms
369,020 KB
testcase_02 AC 195 ms
102,228 KB
testcase_03 AC 38 ms
53,700 KB
testcase_04 AC 38 ms
52,648 KB
testcase_05 AC 37 ms
53,632 KB
testcase_06 AC 177 ms
94,832 KB
testcase_07 AC 172 ms
94,928 KB
testcase_08 AC 215 ms
104,724 KB
testcase_09 AC 111 ms
81,640 KB
testcase_10 AC 325 ms
125,628 KB
testcase_11 AC 190 ms
98,208 KB
testcase_12 AC 134 ms
87,808 KB
testcase_13 AC 311 ms
124,436 KB
testcase_14 AC 73 ms
77,036 KB
testcase_15 AC 550 ms
170,196 KB
testcase_16 AC 198 ms
100,776 KB
testcase_17 AC 180 ms
97,996 KB
testcase_18 AC 102 ms
92,248 KB
testcase_19 AC 1,655 ms
355,144 KB
testcase_20 AC 1,476 ms
324,376 KB
testcase_21 AC 484 ms
160,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

class UF():
    def __init__(self, num):
        self.par = [-1]*num
    def find(self, x):
        if self.par[x] < 0:
            return x
        else:
            stack = []
            while self.par[x] >= 0:
                stack.append(x)
                x = self.par[x]
            for xi in stack:
                self.par[xi] = x
            return x
    
    def union(self, x, y):
        rx = self.find(x)
        ry = self.find(y)
        if rx != ry:
            if self.par[rx] > self.par[ry]:
                rx, ry = ry, rx
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
            return True
        return False

L, R = map(int, readline().split())
R += 1

Edge = []
for x in range(L, R):
    for k in range(2, -(-R//x)):
        Edge.append((0, x-L, x*k-L))
for x in range(L, R-1):
    Edge.append((1, x-L, x+1-L))
T = UF(R-L)
Edge.sort()
ans = 0
for c, a, b in Edge:
    if T.union(a, b):
        ans += c
print(ans)
0