結果

問題 No.2643 Many Range Sums Problems
ユーザー shobonvipshobonvip
提出日時 2024-02-13 15:03:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 715 ms / 8,000 ms
コード長 824 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 85,192 KB
最終ジャッジ日時 2024-09-28 18:29:01
合計ジャッジ時間 13,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,136 KB
testcase_01 AC 34 ms
52,212 KB
testcase_02 AC 36 ms
53,172 KB
testcase_03 AC 452 ms
82,808 KB
testcase_04 AC 387 ms
81,488 KB
testcase_05 AC 374 ms
81,236 KB
testcase_06 AC 519 ms
84,616 KB
testcase_07 AC 494 ms
84,512 KB
testcase_08 AC 469 ms
83,376 KB
testcase_09 AC 507 ms
84,384 KB
testcase_10 AC 464 ms
83,224 KB
testcase_11 AC 323 ms
81,328 KB
testcase_12 AC 661 ms
84,668 KB
testcase_13 AC 679 ms
84,672 KB
testcase_14 AC 480 ms
83,464 KB
testcase_15 AC 508 ms
83,844 KB
testcase_16 AC 418 ms
82,696 KB
testcase_17 AC 436 ms
82,220 KB
testcase_18 AC 308 ms
78,504 KB
testcase_19 AC 107 ms
77,080 KB
testcase_20 AC 174 ms
77,556 KB
testcase_21 AC 93 ms
76,776 KB
testcase_22 AC 207 ms
77,708 KB
testcase_23 AC 297 ms
79,076 KB
testcase_24 AC 481 ms
82,184 KB
testcase_25 AC 447 ms
81,516 KB
testcase_26 AC 117 ms
76,856 KB
testcase_27 AC 115 ms
77,172 KB
testcase_28 AC 35 ms
52,892 KB
testcase_29 AC 33 ms
52,964 KB
testcase_30 AC 510 ms
84,596 KB
testcase_31 AC 502 ms
84,640 KB
testcase_32 AC 715 ms
85,192 KB
testcase_33 AC 686 ms
84,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
r = [0] * n
x = [0] * n
for i in range(n):
	r[i], x[i] = map(int,input().split())

for st in range(n):
	tmp_x = x[::]
	tmp_v = [0] * n
	tmp_rx = [0] * (n + 1)
	tmp_rv = [0] * (n + 1)

	tmp_x[st] = 0
	tmp_v[st] = 1

	for i in range(n-1,-1,-1):
		tmp_rx[i] = tmp_rx[r[i]] + tmp_x[i]
		tmp_rv[i] = tmp_rv[r[i]] + tmp_v[i]

	mode = 1
	m_lb = - 10 ** 18
	m_ub = 10 ** 18
	for i in range(n):
		tar_x = tmp_rx[i] - tmp_rx[i+1]
		tar_v = tmp_rv[i] - tmp_rv[i+1]
		# 0 <= tar_x + tar_v * M <= K
		if tar_v == 0:
			if not 0 <= tar_x <= k:
				mode = 0
		elif tar_v == 1:
			m_lb = max(m_lb, - tar_x)
			m_ub = min(m_ub, k - tar_x)
		else:
			assert tar_v == -1
			m_lb = max(m_lb, tar_x - k)
			m_ub = min(m_ub, tar_x)
	
	if not m_lb <= m_ub:
		mode = 0

	if mode:
		print("Yes")
	else:
		print("No")
0