結果

問題 No.1059 素敵な集合
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-08 20:59:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,539 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-09-18 18:39:47
合計ジャッジ時間 9,069 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 1,539 ms
13,952 KB
testcase_02 AC 186 ms
12,288 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 149 ms
11,904 KB
testcase_07 AC 146 ms
11,776 KB
testcase_08 AC 202 ms
12,160 KB
testcase_09 AC 64 ms
11,136 KB
testcase_10 AC 314 ms
12,160 KB
testcase_11 AC 164 ms
11,776 KB
testcase_12 AC 97 ms
11,392 KB
testcase_13 AC 318 ms
12,800 KB
testcase_14 AC 38 ms
11,008 KB
testcase_15 AC 616 ms
13,824 KB
testcase_16 AC 182 ms
12,032 KB
testcase_17 AC 168 ms
12,032 KB
testcase_18 AC 175 ms
13,824 KB
testcase_19 AC 1,470 ms
13,952 KB
testcase_20 AC 1,428 ms
13,952 KB
testcase_21 AC 581 ms
14,208 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