結果

問題 No.826 連絡網
ユーザー 双六双六
提出日時 2020-07-28 00:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,329 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 111,976 KB
最終ジャッジ日時 2024-06-28 20:27:13
合計ジャッジ時間 4,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 42 ms
62,208 KB
testcase_03 AC 70 ms
77,056 KB
testcase_04 AC 72 ms
76,836 KB
testcase_05 AC 64 ms
74,220 KB
testcase_06 AC 62 ms
74,628 KB
testcase_07 AC 76 ms
76,800 KB
testcase_08 AC 69 ms
76,768 KB
testcase_09 AC 73 ms
77,056 KB
testcase_10 AC 57 ms
71,100 KB
testcase_11 AC 73 ms
76,944 KB
testcase_12 AC 155 ms
102,316 KB
testcase_13 AC 102 ms
86,032 KB
testcase_14 AC 135 ms
95,404 KB
testcase_15 AC 82 ms
78,592 KB
testcase_16 AC 111 ms
88,736 KB
testcase_17 AC 105 ms
86,244 KB
testcase_18 AC 97 ms
83,832 KB
testcase_19 AC 181 ms
106,624 KB
testcase_20 AC 176 ms
106,404 KB
testcase_21 AC 75 ms
77,084 KB
testcase_22 AC 104 ms
86,784 KB
testcase_23 AC 115 ms
90,116 KB
testcase_24 AC 89 ms
81,776 KB
testcase_25 AC 198 ms
111,856 KB
testcase_26 AC 94 ms
82,752 KB
testcase_27 AC 157 ms
103,192 KB
testcase_28 AC 143 ms
96,900 KB
testcase_29 AC 112 ms
85,884 KB
testcase_30 AC 204 ms
111,976 KB
testcase_31 AC 115 ms
88,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class UnionFind:
	def __init__(self, n):
		self.par = [i for i in range(n + 1)]
		self.rank = [0] * (n + 1)
		self.size = [1] * (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 same_check(self, x, y):
		return self.find(x) == self.find(y)

	def union(self, x, y):
		x = self.find(x); y = self.find(y)
		if self.rank[x] < self.rank[y]:
			if self.same_check(x, y) != True:
				self.size[y] += self.size[x]
				self.size[x] = 0
			self.par[x] = y
		else:
			if self.same_check(x, y) != True:
				self.size[x] += self.size[y]
				self.size[y] = 0
			self.par[y] = x
			if self.rank[x] == self.rank[y]:
				self.rank[x] += 1

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



N, P = getlist()
UF = UnionFind(N + 1)

num = N + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			UF.union(i, i * c)
			L[i * c] = 0; c += 1


for i in range(N + 1):
	UF.par[i] = UF.find(i)

ans = UF.siz(P)
print(ans)
0