結果

問題 No.2643 Many Range Sums Problems
ユーザー shobonvipshobonvip
提出日時 2024-02-13 14:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,591 ms / 8,000 ms
コード長 1,050 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 113,872 KB
最終ジャッジ日時 2024-09-28 18:28:47
合計ジャッジ時間 41,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,484 KB
testcase_01 AC 34 ms
53,688 KB
testcase_02 AC 33 ms
53,992 KB
testcase_03 AC 1,945 ms
90,644 KB
testcase_04 AC 1,483 ms
86,476 KB
testcase_05 AC 1,353 ms
86,636 KB
testcase_06 AC 2,591 ms
93,304 KB
testcase_07 AC 1,695 ms
113,872 KB
testcase_08 AC 2,049 ms
92,680 KB
testcase_09 AC 2,172 ms
92,224 KB
testcase_10 AC 1,555 ms
107,404 KB
testcase_11 AC 895 ms
86,712 KB
testcase_12 AC 1,561 ms
94,012 KB
testcase_13 AC 2,238 ms
91,260 KB
testcase_14 AC 2,310 ms
92,600 KB
testcase_15 AC 2,136 ms
92,920 KB
testcase_16 AC 1,819 ms
89,712 KB
testcase_17 AC 1,715 ms
88,920 KB
testcase_18 AC 932 ms
81,808 KB
testcase_19 AC 163 ms
77,040 KB
testcase_20 AC 457 ms
79,236 KB
testcase_21 AC 134 ms
76,924 KB
testcase_22 AC 389 ms
78,972 KB
testcase_23 AC 628 ms
82,224 KB
testcase_24 AC 1,180 ms
89,132 KB
testcase_25 AC 1,064 ms
87,564 KB
testcase_26 AC 168 ms
77,168 KB
testcase_27 AC 178 ms
77,704 KB
testcase_28 AC 33 ms
53,648 KB
testcase_29 AC 32 ms
52,472 KB
testcase_30 AC 1,321 ms
93,460 KB
testcase_31 AC 2,531 ms
94,232 KB
testcase_32 AC 1,511 ms
93,528 KB
testcase_33 AC 1,534 ms
93,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(n):
	r[i], x[i] = map(int,input().split())
	ikeru[i].append(r[i])
	ikeru[r[i]].append(i)

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

	mada = [n]
	tansaku = [0] * (n + 1)
	tansaku[n] = 1
	
	while mada:
		i = mada.pop()
		for j in ikeru[i]:
			if tansaku[j]:
				continue
			tansaku[j] = 1
			tmp_rx[j] += tmp_rx[i] + tmp_x[j]
			tmp_rv[j] += tmp_rv[i] + tmp_v[j]
			mada.append(j)
	
	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