結果

問題 No.2860 Heal Slimes
ユーザー shobonvipshobonvip
提出日時 2024-08-25 15:02:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,859 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 109,700 KB
最終ジャッジ日時 2024-08-25 15:03:03
合計ジャッジ時間 13,115 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 92 ms
76,340 KB
testcase_11 AC 95 ms
76,524 KB
testcase_12 AC 94 ms
76,320 KB
testcase_13 AC 99 ms
76,244 KB
testcase_14 AC 93 ms
75,844 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 115 ms
102,868 KB
testcase_21 AC 134 ms
103,184 KB
testcase_22 AC 111 ms
92,680 KB
testcase_23 AC 132 ms
102,852 KB
testcase_24 AC 138 ms
101,052 KB
testcase_25 AC 92 ms
98,572 KB
testcase_26 AC 77 ms
88,456 KB
testcase_27 AC 97 ms
102,788 KB
testcase_28 AC 102 ms
99,588 KB
testcase_29 AC 88 ms
100,392 KB
testcase_30 AC 100 ms
109,276 KB
testcase_31 AC 107 ms
101,704 KB
testcase_32 AC 110 ms
101,880 KB
testcase_33 AC 97 ms
109,140 KB
testcase_34 AC 109 ms
102,936 KB
testcase_35 AC 108 ms
101,280 KB
testcase_36 AC 104 ms
109,036 KB
testcase_37 AC 103 ms
106,536 KB
testcase_38 AC 104 ms
109,700 KB
testcase_39 AC 109 ms
101,424 KB
testcase_40 AC 148 ms
104,836 KB
testcase_41 AC 150 ms
103,456 KB
testcase_42 AC 149 ms
103,584 KB
testcase_43 AC 146 ms
106,644 KB
testcase_44 AC 151 ms
103,688 KB
testcase_45 AC 138 ms
103,076 KB
testcase_46 AC 153 ms
103,584 KB
testcase_47 AC 127 ms
103,432 KB
testcase_48 AC 149 ms
103,464 KB
testcase_49 AC 132 ms
103,176 KB
testcase_50 AC 156 ms
107,288 KB
testcase_51 AC 153 ms
103,844 KB
testcase_52 AC 151 ms
103,712 KB
testcase_53 AC 139 ms
103,204 KB
testcase_54 AC 156 ms
106,916 KB
testcase_55 AC 132 ms
103,304 KB
testcase_56 AC 157 ms
107,808 KB
testcase_57 AC 158 ms
105,352 KB
testcase_58 AC 152 ms
103,576 KB
testcase_59 AC 128 ms
103,196 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 t[uf.find(i)] > 0:
				print("No")
				return

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

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

	if mode:
		
		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 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