結果

問題 No.1059 素敵な集合
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-08 20:59:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-09-18 18:40:12
合計ジャッジ時間 2,952 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 77 ms
69,632 KB
testcase_02 AC 118 ms
77,388 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 114 ms
77,708 KB
testcase_07 AC 111 ms
76,784 KB
testcase_08 AC 118 ms
77,092 KB
testcase_09 AC 100 ms
76,572 KB
testcase_10 AC 111 ms
77,276 KB
testcase_11 AC 103 ms
76,748 KB
testcase_12 AC 109 ms
76,656 KB
testcase_13 AC 114 ms
77,976 KB
testcase_14 AC 58 ms
67,072 KB
testcase_15 AC 119 ms
78,604 KB
testcase_16 AC 105 ms
76,788 KB
testcase_17 AC 110 ms
76,748 KB
testcase_18 AC 56 ms
66,048 KB
testcase_19 AC 114 ms
78,976 KB
testcase_20 AC 152 ms
78,968 KB
testcase_21 AC 129 ms
78,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)
        self.rank = [0] * (n + 1)

    def find(self, x):
        if self.root[x] < 0:
            return x
        else:
            self.root[x] = self.find(self.root[x])
            return self.root[x]

    def isSame(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        elif self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    def size(self, x):
        return - self.root[self.find(x)]


L, R = map(int, input().split())
size = R - L + 1
uf = UF_tree(R + 1)

for i in range(L, R + 1):
    v = i * 2
    while v <= R:
        uf.unite(i, v)
        v += i

cost = 0
for i in range(L, R):
    if uf.isSame(i, i + 1):
        continue
    uf.unite(i, i + 1)
    cost += 1

print(cost)
0