結果

問題 No.844 split game
ユーザー 双六双六
提出日時 2020-07-15 23:12:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 969 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 99,368 KB
最終ジャッジ日時 2024-11-22 16:02:39
合計ジャッジ時間 22,642 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
85,120 KB
testcase_01 AC 359 ms
84,480 KB
testcase_02 AC 711 ms
91,904 KB
testcase_03 AC 570 ms
88,068 KB
testcase_04 AC 411 ms
84,480 KB
testcase_05 AC 921 ms
99,368 KB
testcase_06 AC 374 ms
84,224 KB
testcase_07 AC 292 ms
84,708 KB
testcase_08 AC 237 ms
81,520 KB
testcase_09 AC 578 ms
88,704 KB
testcase_10 AC 800 ms
93,608 KB
testcase_11 AC 969 ms
98,628 KB
testcase_12 AC 593 ms
88,756 KB
testcase_13 AC 496 ms
85,504 KB
testcase_14 AC 454 ms
84,352 KB
testcase_15 AC 816 ms
93,612 KB
testcase_16 AC 893 ms
96,496 KB
testcase_17 AC 804 ms
96,080 KB
testcase_18 AC 817 ms
93,632 KB
testcase_19 AC 841 ms
94,792 KB
testcase_20 AC 794 ms
94,012 KB
testcase_21 AC 811 ms
95,168 KB
testcase_22 AC 823 ms
96,244 KB
testcase_23 AC 132 ms
78,464 KB
testcase_24 AC 190 ms
79,872 KB
testcase_25 AC 151 ms
78,296 KB
testcase_26 AC 114 ms
77,824 KB
testcase_27 AC 173 ms
79,616 KB
testcase_28 AC 87 ms
76,928 KB
testcase_29 AC 168 ms
78,976 KB
testcase_30 AC 195 ms
79,232 KB
testcase_31 AC 178 ms
79,312 KB
testcase_32 AC 97 ms
77,056 KB
testcase_33 AC 172 ms
78,736 KB
testcase_34 AC 139 ms
78,416 KB
testcase_35 AC 176 ms
79,616 KB
testcase_36 AC 153 ms
78,464 KB
testcase_37 AC 218 ms
80,764 KB
testcase_38 AC 372 ms
83,840 KB
testcase_39 AC 594 ms
89,060 KB
testcase_40 AC 303 ms
82,304 KB
testcase_41 AC 43 ms
53,760 KB
testcase_42 AC 44 ms
53,888 KB
testcase_43 AC 44 ms
54,016 KB
testcase_44 AC 44 ms
54,016 KB
testcase_45 AC 43 ms
53,888 KB
testcase_46 AC 43 ms
53,760 KB
testcase_47 AC 43 ms
54,016 KB
testcase_48 AC 42 ms
53,888 KB
testcase_49 AC 42 ms
53,632 KB
testcase_50 AC 43 ms
54,272 KB
testcase_51 AC 44 ms
53,632 KB
testcase_52 AC 44 ms
54,016 KB
testcase_53 AC 45 ms
53,376 KB
testcase_54 AC 42 ms
53,760 KB
testcase_55 AC 44 ms
53,888 KB
testcase_56 AC 43 ms
53,504 KB
testcase_57 AC 47 ms
54,144 KB
testcase_58 AC 43 ms
53,376 KB
testcase_59 AC 44 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class SegmentTree(object):
	#N:処理する区間の長さ
	def __init__(self, N):
		self.N0 = 2 ** (N - 1).bit_length()
		self.data = [-INF] * (2 * self.N0)

	#k番目の値をxに更新
	def update(self, k, x):
		k += self.N0 - 1
		self.data[k] = x
		while k > 0:
			k = (k - 1) // 2
			self.data[k] = max(self.data[2 * k + 1], self.data[2 * k + 2])

	#区間[l, r]の最大値
	def query(self, l, r):
		L = l + self.N0; R = r + self.N0 + 1
		m = -INF
		while L < R:
			if R & 1:
				R -= 1
				m = max(m, self.data[R - 1])
			if L & 1:
				m = max(m, self.data[L - 1])
				L += 1
			L >>= 1; R >>= 1

		return m

#処理内容
def main():
	N, M, A = getlist()
	line = []
	for i in range(M):
		l, r, p = getlist()
		line.append([r, l, p])
	line.sort()
	
	# セグ木でDP
	Seg = SegmentTree(N + 2)
	Seg.update(0, 0)
	for i in range(M):
		r, l, p = line[i]
		if r != N:
			newScore = max(Seg.query(0, l - 1) - 2 * A + p, Seg.query(l - 1, l - 1) - A + p, Seg.query(r, r))
		else:
			newScore = max(Seg.query(0, l - 1) - A + p, Seg.query(l - 1, l - 1) + p, Seg.query(r, r))
		Seg.update(r, newScore)

	ans = max(Seg.data)
	print(ans)

if __name__ == '__main__':
	main()
0