結果

問題 No.877 Range ReLU Query
ユーザー 双六双六
提出日時 2020-08-04 00:53:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,014 bytes
コンパイル時間 1,393 ms
コンパイル使用メモリ 86,760 KB
実行使用メモリ 109,072 KB
最終ジャッジ日時 2023-10-11 21:37:45
合計ジャッジ時間 11,721 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
71,780 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 105 ms
76,656 KB
testcase_05 RE -
testcase_06 AC 121 ms
77,532 KB
testcase_07 AC 110 ms
77,224 KB
testcase_08 AC 132 ms
78,352 KB
testcase_09 AC 104 ms
76,904 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 658 ms
108,056 KB
testcase_16 AC 637 ms
108,932 KB
testcase_17 AC 650 ms
108,248 KB
testcase_18 AC 661 ms
109,072 KB
testcase_19 AC 534 ms
108,200 KB
testcase_20 AC 637 ms
108,800 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] * N
	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