結果

問題 No.826 連絡網
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-24 16:12:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 237,664 KB
最終ジャッジ日時 2024-09-21 16:56:59
合計ジャッジ時間 5,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,156 KB
testcase_01 AC 35 ms
52,868 KB
testcase_02 AC 40 ms
59,904 KB
testcase_03 AC 57 ms
70,472 KB
testcase_04 AC 58 ms
70,448 KB
testcase_05 AC 57 ms
69,224 KB
testcase_06 AC 57 ms
68,988 KB
testcase_07 AC 57 ms
70,196 KB
testcase_08 AC 55 ms
69,728 KB
testcase_09 AC 62 ms
70,880 KB
testcase_10 AC 48 ms
63,408 KB
testcase_11 AC 56 ms
70,528 KB
testcase_12 AC 224 ms
195,944 KB
testcase_13 AC 118 ms
114,672 KB
testcase_14 AC 172 ms
158,792 KB
testcase_15 AC 72 ms
81,404 KB
testcase_16 AC 141 ms
127,644 KB
testcase_17 AC 119 ms
114,688 KB
testcase_18 AC 106 ms
105,412 KB
testcase_19 AC 240 ms
215,008 KB
testcase_20 AC 241 ms
215,024 KB
testcase_21 AC 60 ms
71,668 KB
testcase_22 AC 115 ms
114,868 KB
testcase_23 AC 138 ms
128,084 KB
testcase_24 AC 94 ms
95,540 KB
testcase_25 AC 275 ms
237,588 KB
testcase_26 AC 102 ms
100,260 KB
testcase_27 AC 235 ms
196,876 KB
testcase_28 AC 189 ms
167,976 KB
testcase_29 AC 118 ms
114,884 KB
testcase_30 AC 273 ms
237,664 KB
testcase_31 AC 134 ms
121,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import chain


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)
        self.rank = [0] * (n + 1)

    def find(self, x):
        if self.root[x] < 0:
            return x
        else:
            self.root[x] = self.find(self.root[x])
            return self.root[x]

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

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        elif self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    def size(self, x):
        return -self.root[self.find(x)]


def prime_set(N):
    """
    Nまでの素数のsetを返す
    """
    if N < 4:
        return ({}, {}, {2}, {2, 3})[N]
    Nsq = int(N ** 0.5 + 0.5) + 1
    primes = {2, 3} | set(chain(range(5, N + 1, 6), range(7, N + 1, 6)))
    for i in range(5, Nsq, 2):
        if i in primes:
            primes -= set(range(i * i, N + 1, i * 2))
    return primes


N, P = map(int, input().split())
uf = UF_tree(N)
for p in prime_set(N):
    q = p * 2
    while q <= N:
        uf.unite(p, q)
        q += p

print(uf.size(P))
0