結果

問題 No.1059 素敵な集合
ユーザー stngstng
提出日時 2022-08-27 16:11:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 83,284 KB
最終ジャッジ日時 2024-10-14 13:39:30
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 96 ms
80,400 KB
testcase_02 AC 131 ms
80,052 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 114 ms
77,696 KB
testcase_07 AC 119 ms
77,824 KB
testcase_08 AC 122 ms
78,592 KB
testcase_09 AC 115 ms
77,472 KB
testcase_10 AC 111 ms
78,104 KB
testcase_11 AC 118 ms
78,076 KB
testcase_12 AC 116 ms
78,056 KB
testcase_13 AC 124 ms
79,924 KB
testcase_14 AC 57 ms
66,816 KB
testcase_15 AC 135 ms
82,192 KB
testcase_16 AC 136 ms
78,796 KB
testcase_17 AC 120 ms
79,232 KB
testcase_18 AC 62 ms
80,384 KB
testcase_19 AC 125 ms
80,768 KB
testcase_20 AC 149 ms
81,712 KB
testcase_21 AC 133 ms
83,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r = map(int,input().split())

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        self.size = [1 for _ in range(n+1)]
    # 検索
    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 self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

n = r+1
ki = UnionFind(n)
for i in range(l,r+1):
    for j in range(i+i,r+1,i):
        if not ki.same_check(i,j):
            ki.union(i,j)

ss = set()

for i in range(l,r+1):
    ss.add(ki.find(i))

print(len(ss)-1)
0