結果

問題 No.2860 Heal Slimes
ユーザー shobonvipshobonvip
提出日時 2024-08-25 15:08:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 1,782 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 109,520 KB
最終ジャッジ日時 2024-08-25 15:08:51
合計ジャッジ時間 13,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
78,204 KB
testcase_01 AC 257 ms
77,928 KB
testcase_02 AC 258 ms
77,936 KB
testcase_03 AC 256 ms
78,104 KB
testcase_04 AC 274 ms
78,124 KB
testcase_05 AC 389 ms
80,144 KB
testcase_06 AC 421 ms
80,252 KB
testcase_07 AC 439 ms
80,112 KB
testcase_08 AC 397 ms
80,440 KB
testcase_09 AC 409 ms
79,684 KB
testcase_10 AC 82 ms
75,624 KB
testcase_11 AC 81 ms
76,060 KB
testcase_12 AC 91 ms
75,688 KB
testcase_13 AC 83 ms
75,624 KB
testcase_14 AC 81 ms
75,676 KB
testcase_15 AC 155 ms
77,168 KB
testcase_16 AC 158 ms
77,252 KB
testcase_17 AC 159 ms
77,388 KB
testcase_18 AC 165 ms
77,268 KB
testcase_19 AC 158 ms
77,212 KB
testcase_20 AC 134 ms
103,052 KB
testcase_21 AC 140 ms
102,324 KB
testcase_22 AC 120 ms
92,240 KB
testcase_23 AC 140 ms
103,120 KB
testcase_24 AC 153 ms
101,144 KB
testcase_25 AC 96 ms
98,908 KB
testcase_26 AC 80 ms
88,388 KB
testcase_27 AC 106 ms
103,060 KB
testcase_28 AC 114 ms
99,444 KB
testcase_29 AC 108 ms
99,836 KB
testcase_30 AC 108 ms
109,520 KB
testcase_31 AC 113 ms
101,820 KB
testcase_32 AC 118 ms
101,732 KB
testcase_33 AC 110 ms
108,056 KB
testcase_34 AC 120 ms
103,180 KB
testcase_35 AC 118 ms
101,872 KB
testcase_36 AC 110 ms
108,924 KB
testcase_37 AC 111 ms
106,828 KB
testcase_38 AC 109 ms
108,280 KB
testcase_39 AC 122 ms
106,560 KB
testcase_40 AC 164 ms
104,716 KB
testcase_41 AC 163 ms
103,824 KB
testcase_42 AC 163 ms
103,560 KB
testcase_43 AC 163 ms
106,780 KB
testcase_44 AC 165 ms
103,580 KB
testcase_45 AC 144 ms
103,304 KB
testcase_46 AC 178 ms
103,572 KB
testcase_47 AC 143 ms
103,196 KB
testcase_48 AC 161 ms
103,560 KB
testcase_49 AC 142 ms
103,432 KB
testcase_50 AC 168 ms
107,044 KB
testcase_51 AC 164 ms
103,836 KB
testcase_52 AC 163 ms
103,828 KB
testcase_53 AC 157 ms
103,436 KB
testcase_54 AC 166 ms
106,656 KB
testcase_55 AC 140 ms
103,692 KB
testcase_56 AC 167 ms
107,672 KB
testcase_57 AC 164 ms
105,380 KB
testcase_58 AC 165 ms
103,692 KB
testcase_59 AC 145 ms
103,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind:
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * n
	
	def find(self, 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):
		x = self.find(x)
		y = self.find(y)
		if x == y:
			return
		if self.parents[x] > self.parents[y]:
			x, y = y, x
		self.parents[x] += self.parents[y]
		self.parents[y] = x

def solve():
	n, k, x = map(int,input().split())
	h = list(map(int,input().split()))
	if k == n:
		if max(h) == min(h):
			print("Yes")
		else:
			print("No")
		return 

	v = [h[i+1] - h[i] for i in range(n-1)]
	for i in range(n-1):
		if v[i] % x != 0:
			print("No")
			return


	uf = UnionFind(n+1)

	for i in range(n-k+1):
		# h[i], ...,  h[i+k-1]
		if i == 0:
			uf.union(i+k-1, n-1)			
		elif i == n-k:
			uf.union(i-1, n)
		else:
			uf.union(i-1, i+k-1)
	
	dr = 0
	dg = 0
	mode = 0
	if uf.find(n-1) == uf.find(n):
		mode = 1
	t = defaultdict(int)

	for i in range(n-1):
		if uf.find(n-1) == uf.find(i):
			dr += v[i]
		elif uf.find(n) == uf.find(i):
			dg += v[i]
		else:
			t[uf.find(i)] += v[i]
			if t[uf.find(i)] > 0:
				print("No")
				return

	if dr % x != 0:
		print("No")
		return

	if dg % x != 0:
		print("No")
		return


	if not mode:
		if dr < 0:
			print("No")
			return

		tmp = - dr
		for i in range(n-1):
			if uf.find(n-1) == uf.find(i):
				tmp += v[i]
				if tmp > 0:
					print("No")
					return

		if dg > 0:
			print("No")
			return
		
		tmp = 0
		for i in range(n-1):
			if uf.find(n) == uf.find(i):
				tmp += v[i]
				if tmp > 0:
					print("No")
					return
		

		
	for i, c in t.items():
		if c != 0:
			print("No")
			return
	
	print("Yes")

t = int(input())
for _ in range(t):
	solve()
0