結果

問題 No.877 Range ReLU Query
ユーザー 双六双六
提出日時 2020-08-04 00:56:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 2,014 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-08 10:29:47
合計ジャッジ時間 8,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,144 KB
testcase_01 AC 92 ms
77,568 KB
testcase_02 AC 78 ms
72,320 KB
testcase_03 AC 95 ms
77,184 KB
testcase_04 AC 58 ms
63,360 KB
testcase_05 AC 71 ms
68,992 KB
testcase_06 AC 74 ms
70,272 KB
testcase_07 AC 67 ms
67,840 KB
testcase_08 AC 97 ms
76,800 KB
testcase_09 AC 58 ms
64,000 KB
testcase_10 AC 79 ms
71,808 KB
testcase_11 AC 558 ms
104,832 KB
testcase_12 AC 522 ms
104,448 KB
testcase_13 AC 427 ms
96,512 KB
testcase_14 AC 434 ms
96,768 KB
testcase_15 AC 591 ms
104,960 KB
testcase_16 AC 564 ms
103,168 KB
testcase_17 AC 595 ms
104,320 KB
testcase_18 AC 593 ms
103,680 KB
testcase_19 AC 517 ms
107,904 KB
testcase_20 AC 607 ms
109,056 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.N = N
		self.N0 = 2 ** (N - 1).bit_length()
		self.initVal = 0
		self.data = [self.initVal] * (2 * self.N0)

	# 区間クエリの種類
	def calc(self, a, b):
		return a + b

	# セグメント木の中身をリストAで初期化
	def initialize(self, A):
		for i in range(self.N):
			self.data[self.N0 - 1 + i] = A[i]
		for i in range(self.N0 - 2, -1, -1):
			self.data[i] = self.calc(self.data[2 * i + 1], self.data[2 * i + 2])

	#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] = self.calc(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 = self.initVal
		while L < R:
			if R & 1:
				R -= 1
				m = self.calc(m, self.data[R - 1])
			if L & 1:
				m = self.calc(m, self.data[L - 1])
				L += 1
			L >>= 1; R >>= 1

		return m

#処理内容
def main():
	N, Q = getlist()
	A = getlist()
	Alist = [[A[i], i] for i in range(N)]
	query = []
	Seg01 = SegmentTree(N)
	Segval = SegmentTree(N)
	Seg01.initialize([1] * N)
	Segval.initialize(A)
	ans = [0] * Q
	for i in range(Q):
		q = getlist()
		l = q[1]; r = q[2]; x = q[3]
		l -= 1; r -= 1
		query.append([x, l, r, i])
	
	Alist.sort(key=lambda x: x[0])
	query.sort(key=lambda x: x[0])
	i = 0; j = 0
	while i < N and j < Q:
		Ai, itr = Alist[i]
		x, l, r, ansitr = query[j]
		if Ai < x:
			Seg01.update(itr, 0)
			Segval.update(itr, 0)
			i += 1
		else:
			anspre = Segval.query(l, r) - x * Seg01.query(l, r)
			ans[ansitr] = anspre
			j += 1

	for t in range(j, Q):
		x, l, r, ansitr = query[t]
		ans[ansitr] = 0

	for i in range(Q):
		print(ans[i])

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