結果

問題 No.1059 素敵な集合
ユーザー ayaoniayaoni
提出日時 2020-11-22 11:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 83,188 KB
最終ジャッジ日時 2024-07-23 16:23:29
合計ジャッジ時間 3,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,636 KB
testcase_01 AC 105 ms
74,848 KB
testcase_02 AC 111 ms
79,452 KB
testcase_03 AC 37 ms
52,340 KB
testcase_04 AC 39 ms
53,604 KB
testcase_05 AC 37 ms
52,696 KB
testcase_06 AC 101 ms
77,540 KB
testcase_07 AC 104 ms
78,360 KB
testcase_08 AC 105 ms
79,096 KB
testcase_09 AC 98 ms
76,808 KB
testcase_10 AC 101 ms
78,148 KB
testcase_11 AC 104 ms
77,680 KB
testcase_12 AC 106 ms
76,928 KB
testcase_13 AC 111 ms
80,704 KB
testcase_14 AC 49 ms
64,324 KB
testcase_15 AC 121 ms
82,476 KB
testcase_16 AC 103 ms
78,608 KB
testcase_17 AC 106 ms
79,168 KB
testcase_18 AC 57 ms
78,112 KB
testcase_19 AC 110 ms
80,704 KB
testcase_20 AC 143 ms
81,864 KB
testcase_21 AC 122 ms
83,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())


class UnionFind:
    def __init__(self,n):
        self.par = [i for i in range(n+1)]  # 親のノード番号
        self.rank = [0]*(n+1)

    def find(self,x):  # xの根のノード番号
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def same_check(self,x,y):  # x,yが同じグループか否か
        return self.find(x) == self.find(y)

    def unite(self,x,y):  # x,yの属するグループの併合
        x = self.find(x)
        y = self.find(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


L,R = MI()
UF = UnionFind(R)
for i in range(L,R//2+1):
    for j in range(2*i,R+1,i):
        UF.unite(i,j)

X = [UF.find(i) for i in range(L,R+1)]
print(len(set(X))-1)
0