結果

問題 No.877 Range ReLU Query
ユーザー neterukunneterukun
提出日時 2020-09-28 04:00:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 1,397 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,636 KB
最終ジャッジ日時 2024-11-08 10:31:25
合計ジャッジ時間 7,970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,480 KB
testcase_01 AC 63 ms
65,280 KB
testcase_02 AC 63 ms
64,512 KB
testcase_03 AC 68 ms
68,096 KB
testcase_04 AC 51 ms
59,392 KB
testcase_05 AC 57 ms
62,208 KB
testcase_06 AC 58 ms
62,464 KB
testcase_07 AC 56 ms
61,824 KB
testcase_08 AC 70 ms
68,736 KB
testcase_09 AC 51 ms
59,392 KB
testcase_10 AC 61 ms
64,512 KB
testcase_11 AC 522 ms
102,296 KB
testcase_12 AC 482 ms
100,396 KB
testcase_13 AC 389 ms
94,832 KB
testcase_14 AC 403 ms
95,428 KB
testcase_15 AC 552 ms
102,832 KB
testcase_16 AC 549 ms
105,600 KB
testcase_17 AC 573 ms
105,360 KB
testcase_18 AC 572 ms
106,636 KB
testcase_19 AC 525 ms
103,880 KB
testcase_20 AC 572 ms
103,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
import sys
input = sys.stdin.buffer.readline


class BinaryIndexedTree:
    def __init__(self, n):
        self.size = n
        self.bit = [0] * (n + 1)

    def build(self, array):
        for i, val in enumerate(array):
            self.bit[i + 1] = val
        for i in range(1, self.size):
            if i + (i & -i) > self.size:
                continue
            self.bit[i + (i & -i)] += self.bit[i]

    def _sum(self, i):
        s = 0
        while i > 0:
            s += self.bit[i]
            i -= i & -i
        return s

    def add(self, i, val):
        i += 1
        while i <= self.size:
            self.bit[i] += val
            i += i & -i

    def sum(self, l, r):
        return self._sum(r) - self._sum(l)


n, q = map(int, input().split())
a = list(map(int, input().split()))
queries = [[i] + list(map(int, input().split())) for i in range(q)]


queries.sort(key=itemgetter(4), reverse=True)
a = [(i, val) for i, val in enumerate(a)]
a.sort(key=itemgetter(1), reverse=True)

bit_cnt = BinaryIndexedTree(n)
bit_val = BinaryIndexedTree(n)
ans = [0] * q
a_ind = 0
for i, _, l, r, x in queries:
    while a_ind < n and a[a_ind][1] >= x:
        ai, val = a[a_ind]
        bit_cnt.add(ai, 1)
        bit_val.add(ai, val)
        a_ind += 1
    l -= 1
    ans[i] = bit_val.sum(l, r) - bit_cnt.sum(l, r) * x

print("\n".join(map(str, ans)))
0