結果

問題 No.1170 Never Want to Walk
ユーザー shobonvipshobonvip
提出日時 2020-08-14 22:58:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,098 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-04-18 22:48:17
合計ジャッジ時間 8,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,368 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 42 ms
52,608 KB
testcase_06 AC 41 ms
52,864 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 42 ms
52,480 KB
testcase_12 AC 81 ms
71,424 KB
testcase_13 AC 90 ms
75,904 KB
testcase_14 AC 90 ms
75,904 KB
testcase_15 AC 74 ms
70,912 KB
testcase_16 AC 78 ms
72,576 KB
testcase_17 AC 91 ms
76,672 KB
testcase_18 AC 68 ms
71,424 KB
testcase_19 AC 67 ms
72,832 KB
testcase_20 AC 86 ms
76,672 KB
testcase_21 AC 65 ms
71,552 KB
testcase_22 AC 88 ms
76,416 KB
testcase_23 AC 91 ms
76,324 KB
testcase_24 AC 91 ms
76,792 KB
testcase_25 AC 90 ms
76,660 KB
testcase_26 AC 88 ms
76,288 KB
testcase_27 AC 414 ms
101,604 KB
testcase_28 AC 400 ms
102,096 KB
testcase_29 AC 422 ms
102,780 KB
testcase_30 AC 416 ms
101,996 KB
testcase_31 AC 431 ms
101,496 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
class UnionFind:
	"""
	class UnionFind
	https://note.nkmk.me/python-union-find/
	
	order O(log(n))
	
	n = the number of elements
	parents = the list that contains "parents" of x. be careful that it doesn't contain "root" of x.
	"""
	def __init__(self, n):
		"""
		make UnionFind
		:param n: the number of elements
		"""
		self.n = n
		self.parents = [-1] * n
	
	def find(self, x):
		"""
		:param x: an element
		:return: the root containing x
		"""
		if self.parents[x] < 0:
			return x
		else:
			self.parents[x] = self.find(self.parents[x])
			return self.parents[x]
	
	def union(self, x, y):
		"""
		:param x, y: an element
		"""
		# root
		x = self.find(x)
		y = self.find(y)
		if x == y:
			# already same group so do nothing
			return
		if self.parents[x] > self.parents[y]:
			# the root should be min of group
			x, y = y, x
		# remind that x, y is the root, x < y, then, y unions to x.
		self.parents[x] += self.parents[y]
		# and then y's parent is x.
		self.parents[y] = x
	def size(self, x):
		# return the size of group
		return -self.parents[self.find(x)]
	
	def same(self, x, y):
		# return whether the x, y are in same group
		return self.find(x) == self.find(y)
	
	def members(self, x):
		# return members of group
		root = self.find(x)
		return [i for i in range(self.n) if self.find(i) == root]
	
	def roots(self):
		# return all roots
		return [i for i, x in enumerate(self.parents) if x < 0]
	
	def group_count(self):
		# return how many groups
		return len(self.roots())
	
	def all_group_members(self):
		# return all members of all groups
		return {r: self.members(r) for r in self.roots()}

n,a,b = map(int,input().split())
x = list(map(int,input().split()))
x.sort()
union = UnionFind(n)

for i in range(n):
	targ1 = bisect.bisect_right(x, x[i]+b)
	targ2 = bisect.bisect_left(x, x[i]+a)
	targ3 = bisect.bisect_right(x, x[i]-a)
	targ4 = bisect.bisect_left(x, x[i]-b)
	if targ1 - targ2 > 0:
		for j in range(targ2, targ1):
			union.union(i, j)
	if targ3 - targ4 > 0:
		for j in range(targ4, targ3):
			union.union(i, j)

for i in range(n):
	print(union.size(i))
0