結果

問題 No.1059 素敵な集合
ユーザー hir355hir355
提出日時 2020-05-22 22:02:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,372 KB
最終ジャッジ日時 2024-07-23 09:29:18
合計ジャッジ時間 4,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 224 ms
21,888 KB
testcase_02 AC 139 ms
15,872 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 110 ms
14,464 KB
testcase_07 AC 102 ms
14,592 KB
testcase_08 AC 137 ms
15,872 KB
testcase_09 AC 55 ms
12,544 KB
testcase_10 AC 167 ms
16,000 KB
testcase_11 AC 115 ms
14,592 KB
testcase_12 AC 76 ms
13,568 KB
testcase_13 AC 203 ms
17,536 KB
testcase_14 AC 35 ms
11,392 KB
testcase_15 AC 333 ms
23,040 KB
testcase_16 AC 123 ms
15,360 KB
testcase_17 AC 124 ms
15,488 KB
testcase_18 AC 148 ms
30,372 KB
testcase_19 AC 459 ms
21,760 KB
testcase_20 AC 444 ms
22,400 KB
testcase_21 AC 365 ms
23,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (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 unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
        else:
            self.par[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)


l, r = map(int, input().split())
uf = UnionFind(r + 1)
t = [0] * (r + 1)
for i in range(l, r + 1):
    if t[i] == 0:
        for j in range(i * 2, r + 1, i):
            t[j] = 1
            uf.unite(i, j)
ans = 0
s = set()
for i in range(l, r + 1):
    p = uf.find(i)
    if p not in s:
        ans += 1
        s.add(p)
print(len(s) - 1)
0