結果

問題 No.2643 Many Range Sums Problems
ユーザー shobonvipshobonvip
提出日時 2024-02-13 15:05:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 743 ms / 8,000 ms
コード長 816 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 79,812 KB
最終ジャッジ日時 2024-09-28 18:29:44
合計ジャッジ時間 12,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,556 KB
testcase_01 AC 32 ms
52,404 KB
testcase_02 AC 32 ms
53,960 KB
testcase_03 AC 380 ms
78,616 KB
testcase_04 AC 322 ms
78,348 KB
testcase_05 AC 323 ms
78,096 KB
testcase_06 AC 410 ms
79,180 KB
testcase_07 AC 412 ms
79,424 KB
testcase_08 AC 405 ms
79,812 KB
testcase_09 AC 430 ms
79,372 KB
testcase_10 AC 392 ms
79,016 KB
testcase_11 AC 263 ms
77,816 KB
testcase_12 AC 730 ms
79,600 KB
testcase_13 AC 660 ms
79,392 KB
testcase_14 AC 398 ms
79,216 KB
testcase_15 AC 412 ms
78,928 KB
testcase_16 AC 352 ms
78,516 KB
testcase_17 AC 386 ms
79,068 KB
testcase_18 AC 320 ms
77,412 KB
testcase_19 AC 105 ms
76,564 KB
testcase_20 AC 156 ms
76,500 KB
testcase_21 AC 83 ms
76,528 KB
testcase_22 AC 185 ms
76,744 KB
testcase_23 AC 278 ms
77,392 KB
testcase_24 AC 448 ms
78,340 KB
testcase_25 AC 431 ms
78,504 KB
testcase_26 AC 107 ms
76,712 KB
testcase_27 AC 111 ms
76,928 KB
testcase_28 AC 34 ms
52,284 KB
testcase_29 AC 32 ms
53,288 KB
testcase_30 AC 416 ms
78,688 KB
testcase_31 AC 440 ms
79,320 KB
testcase_32 AC 743 ms
79,452 KB
testcase_33 AC 728 ms
79,452 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())

tmp_x = x[::]
tmp_v = [0] * n

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

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

	mode = 1
	m_lb = - 10 ** 18
	m_ub = 10 ** 18
	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]
		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:
			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")

	tmp_x[st] = x[st]
	tmp_v[st] = 0
0