結果

問題 No.1059 素敵な集合
ユーザー rlangevinrlangevin
提出日時 2023-06-27 12:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 83,440 KB
最終ジャッジ日時 2024-07-04 05:52:54
合計ジャッジ時間 3,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 87 ms
80,724 KB
testcase_02 AC 115 ms
79,536 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 106 ms
77,696 KB
testcase_07 AC 102 ms
77,772 KB
testcase_08 AC 106 ms
78,736 KB
testcase_09 AC 101 ms
76,916 KB
testcase_10 AC 109 ms
78,336 KB
testcase_11 AC 104 ms
77,708 KB
testcase_12 AC 116 ms
78,204 KB
testcase_13 AC 115 ms
80,012 KB
testcase_14 AC 53 ms
65,408 KB
testcase_15 AC 130 ms
82,772 KB
testcase_16 AC 103 ms
78,752 KB
testcase_17 AC 111 ms
78,916 KB
testcase_18 AC 58 ms
79,056 KB
testcase_19 AC 116 ms
80,944 KB
testcase_20 AC 151 ms
81,596 KB
testcase_21 AC 123 ms
83,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]

L, R = map(int, input().split())
U = UnionFind(R - L + 1)

for i in range(L, R + 1):
    for j in range(2 * i, R + 1, i):
        U.union(i - L, j - L)

S = set()
for i in range(R - L + 1):
    S.add(U.find(i))

print(len(S) - 1) 
0