結果

問題 No.826 連絡網
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-05 15:31:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,623 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 106,036 KB
最終ジャッジ日時 2024-09-15 00:06:10
合計ジャッジ時間 5,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,420 KB
testcase_01 AC 39 ms
53,308 KB
testcase_02 AC 43 ms
59,772 KB
testcase_03 AC 72 ms
71,328 KB
testcase_04 AC 69 ms
71,588 KB
testcase_05 AC 64 ms
69,008 KB
testcase_06 AC 65 ms
69,688 KB
testcase_07 AC 67 ms
72,636 KB
testcase_08 AC 65 ms
70,380 KB
testcase_09 AC 68 ms
73,568 KB
testcase_10 AC 55 ms
64,932 KB
testcase_11 AC 67 ms
71,012 KB
testcase_12 AC 168 ms
96,768 KB
testcase_13 AC 105 ms
83,272 KB
testcase_14 AC 138 ms
90,160 KB
testcase_15 AC 75 ms
74,348 KB
testcase_16 AC 120 ms
84,968 KB
testcase_17 AC 101 ms
82,276 KB
testcase_18 AC 93 ms
79,744 KB
testcase_19 AC 192 ms
100,744 KB
testcase_20 AC 185 ms
99,956 KB
testcase_21 AC 69 ms
71,912 KB
testcase_22 AC 109 ms
83,452 KB
testcase_23 AC 130 ms
86,700 KB
testcase_24 AC 92 ms
78,656 KB
testcase_25 AC 241 ms
105,848 KB
testcase_26 AC 89 ms
78,592 KB
testcase_27 AC 169 ms
97,760 KB
testcase_28 AC 150 ms
93,044 KB
testcase_29 AC 102 ms
81,896 KB
testcase_30 AC 215 ms
106,036 KB
testcase_31 AC 110 ms
84,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind :
    def __init__(self, size) :
        self.parent = list(range(size))
        self.height = [0] * size
        self.size = [1] * size
        self.component = size

    def root(self, index) :
        if self.parent[index] == index :  # 根の場合
            return index
        rootIndex = self.root(self.parent[index])  # 葉の場合親の根を取得
        self.parent[index] = rootIndex  # 親の付け直し
        return rootIndex

    def union(self, index1, index2) :  # 結合
        root1 = self.root(index1)
        root2 = self.root(index2)

        if root1 == root2 :  # 連結されている場合
            return

        self.component -= 1  # 連結成分を減らす

        if self.height[root1] < self.height[root2] :
            self.parent[root1] = root2  # root2に結合
            self.size[root2] += self.size[root1]
        else :
            self.parent[root2] = root1  # root1に結合
            self.size[root1] += self.size[root2]
            if self.height[root1] == self.height[root2] :
                self.height[root1] += 1
        return

    def isSameRoot(self, index1, index2) :
        return self.root(index1) == self.root(index2)

    def sizeOfSameRoot(self, index) :
        return self.size[self.root(index)]

    def getComponent(self) :
        return self.component

N, P = map(int, input().split())
tree = UnionFind(N + 1)

isPrime = [True] * (N + 1)
for i in range(2, N + 1):
    if isPrime[i]:
        for j in range(i + i, N + 1, i):
            isPrime[j] = False
            tree.union(i, j)

ans = tree.sizeOfSameRoot(P)
print(ans)
0