結果

問題 No.826 連絡網
ユーザー stngstng
提出日時 2022-07-09 17:44:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,851 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 201,164 KB
最終ジャッジ日時 2024-12-31 06:21:04
合計ジャッジ時間 53,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,904 KB
testcase_01 AC 40 ms
172,364 KB
testcase_02 AC 44 ms
67,412 KB
testcase_03 AC 85 ms
178,456 KB
testcase_04 AC 83 ms
83,692 KB
testcase_05 AC 80 ms
187,132 KB
testcase_06 AC 81 ms
83,348 KB
testcase_07 AC 85 ms
183,760 KB
testcase_08 AC 79 ms
83,708 KB
testcase_09 AC 83 ms
182,248 KB
testcase_10 AC 62 ms
76,244 KB
testcase_11 AC 83 ms
201,164 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 325 ms
180,696 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 92 ms
84,484 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,319 ms
95,060 KB
testcase_25 TLE -
testcase_26 AC 1,833 ms
100,728 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sieve_of_eratosthenes(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False

    return prime

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        self.size = [1 for _ in range(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 union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

n,p = map(int,input().split())
ki = UnionFind(n+1)
chk = [0]*(n+1)

prm = sieve_of_eratosthenes(n)
pm = []
for i in range(n+1):
    if prm[i] == True:
        pm.append(i)
pm.sort()

tmp = 2
while tmp*2 <= n:
    #print(tmp*2,tmp,tmp)
    ki.union(2,tmp*2)
    tmp += 1

for i in range(1,len(pm)):
    now = pm[i]
    idx = i
    if now*2 <= n:
        ki.union(now,now*2)
    else:
        break
    tmp = 3
    while now*tmp <= n:
        #print(now,now,prm[idx])
        ki.union(now,now*tmp)
        tmp += 1
        #idx += 1
        #if idx >= len(pm):
        #    break

ans = 0
idx = ki.find(p)

for i in range(n):
    #print(ki.par[i+1])
    if ki.find(i+1) == idx:
        ans += 1
        #print(i+1,end="")

print(ans)
0