結果

問題 No.2860 Heal Slimes
ユーザー shobonvipshobonvip
提出日時 2024-08-25 14:43:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,388 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,616 KB
最終ジャッジ日時 2024-08-25 14:43:45
合計ジャッジ時間 12,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 123 ms
76,820 KB
testcase_11 AC 122 ms
76,892 KB
testcase_12 AC 124 ms
76,808 KB
testcase_13 AC 133 ms
77,624 KB
testcase_14 AC 121 ms
76,936 KB
testcase_15 AC 119 ms
76,940 KB
testcase_16 AC 121 ms
76,920 KB
testcase_17 AC 116 ms
76,844 KB
testcase_18 AC 122 ms
77,152 KB
testcase_19 AC 124 ms
77,128 KB
testcase_20 AC 98 ms
103,412 KB
testcase_21 AC 108 ms
103,204 KB
testcase_22 AC 97 ms
92,248 KB
testcase_23 AC 115 ms
102,556 KB
testcase_24 AC 119 ms
100,200 KB
testcase_25 AC 104 ms
98,984 KB
testcase_26 AC 89 ms
90,184 KB
testcase_27 AC 115 ms
102,600 KB
testcase_28 AC 120 ms
100,388 KB
testcase_29 AC 107 ms
99,896 KB
testcase_30 AC 120 ms
109,616 KB
testcase_31 AC 115 ms
102,208 KB
testcase_32 AC 129 ms
103,924 KB
testcase_33 AC 120 ms
109,412 KB
testcase_34 AC 125 ms
103,844 KB
testcase_35 AC 127 ms
104,808 KB
testcase_36 AC 115 ms
109,032 KB
testcase_37 AC 119 ms
106,928 KB
testcase_38 AC 121 ms
109,516 KB
testcase_39 AC 125 ms
106,772 KB
testcase_40 AC 132 ms
104,588 KB
testcase_41 AC 129 ms
103,200 KB
testcase_42 AC 130 ms
103,296 KB
testcase_43 AC 132 ms
105,772 KB
testcase_44 AC 128 ms
103,324 KB
testcase_45 AC 116 ms
102,684 KB
testcase_46 AC 129 ms
103,208 KB
testcase_47 AC 114 ms
102,568 KB
testcase_48 AC 129 ms
103,468 KB
testcase_49 AC 116 ms
102,684 KB
testcase_50 AC 163 ms
106,272 KB
testcase_51 AC 130 ms
103,320 KB
testcase_52 AC 128 ms
103,440 KB
testcase_53 AC 118 ms
102,684 KB
testcase_54 AC 128 ms
105,768 KB
testcase_55 AC 116 ms
102,672 KB
testcase_56 AC 135 ms
106,792 KB
testcase_57 AC 131 ms
104,984 KB
testcase_58 AC 130 ms
103,456 KB
testcase_59 AC 117 ms
102,796 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)]

	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 mode:
		if dr % x != 0:
			print("No")
			return
	else:
		if dr < 0 or dr % x != 0:
			print("No")
			return
		if dg > 0 or dg % x != 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