結果

問題 No.826 連絡網
ユーザー rlangevinrlangevin
提出日時 2023-02-08 08:59:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 1,438 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 156,232 KB
最終ジャッジ日時 2024-07-05 22:54:13
合計ジャッジ時間 6,186 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,044 KB
testcase_01 AC 42 ms
55,932 KB
testcase_02 AC 47 ms
62,444 KB
testcase_03 AC 86 ms
77,192 KB
testcase_04 AC 88 ms
77,328 KB
testcase_05 AC 84 ms
76,980 KB
testcase_06 AC 84 ms
76,952 KB
testcase_07 AC 86 ms
77,372 KB
testcase_08 AC 84 ms
77,136 KB
testcase_09 AC 86 ms
77,416 KB
testcase_10 AC 62 ms
70,904 KB
testcase_11 AC 84 ms
77,552 KB
testcase_12 AC 237 ms
136,320 KB
testcase_13 AC 151 ms
99,160 KB
testcase_14 AC 202 ms
121,616 KB
testcase_15 AC 97 ms
82,008 KB
testcase_16 AC 156 ms
105,412 KB
testcase_17 AC 148 ms
99,372 KB
testcase_18 AC 132 ms
94,504 KB
testcase_19 AC 258 ms
144,584 KB
testcase_20 AC 262 ms
143,568 KB
testcase_21 AC 86 ms
77,864 KB
testcase_22 AC 151 ms
99,972 KB
testcase_23 AC 161 ms
106,700 KB
testcase_24 AC 123 ms
89,320 KB
testcase_25 AC 302 ms
155,768 KB
testcase_26 AC 127 ms
91,912 KB
testcase_27 AC 236 ms
137,700 KB
testcase_28 AC 214 ms
124,924 KB
testcase_29 AC 148 ms
98,844 KB
testcase_30 AC 302 ms
156,232 KB
testcase_31 AC 162 ms
103,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    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 x != 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
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]


from math import ceil, sqrt
def Sieve(n):
    lst = [True] * (n + 1)
    S = set()
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(2, n + 1):
        if lst[i]:
            S.add(i)
    return S


N, P = map(int, input().split())
G = [[] for i in range(N + 1)]
U = UnionFind(N + 1)
for i in Sieve(N):
    for j in range(i, N + 1, i):
        if j + i <= N:
            U.union(i, i + j)

ans = 0
for i in range(N + 1):
    if U.is_same(U.find(P), i):
        ans += 1
print(ans)
0