結果

問題 No.877 Range ReLU Query
ユーザー maspymaspy
提出日時 2020-03-21 04:33:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 672 ms / 2,000 ms
コード長 2,049 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 126,140 KB
最終ジャッジ日時 2024-11-08 10:26:42
合計ジャッジ時間 8,479 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 69 ms
68,224 KB
testcase_02 AC 62 ms
65,408 KB
testcase_03 AC 72 ms
69,632 KB
testcase_04 AC 48 ms
59,008 KB
testcase_05 AC 53 ms
61,312 KB
testcase_06 AC 56 ms
62,720 KB
testcase_07 AC 53 ms
60,928 KB
testcase_08 AC 75 ms
71,168 KB
testcase_09 AC 48 ms
59,520 KB
testcase_10 AC 64 ms
66,688 KB
testcase_11 AC 614 ms
124,592 KB
testcase_12 AC 576 ms
122,020 KB
testcase_13 AC 457 ms
108,572 KB
testcase_14 AC 483 ms
110,192 KB
testcase_15 AC 652 ms
125,392 KB
testcase_16 AC 613 ms
121,400 KB
testcase_17 AC 634 ms
124,284 KB
testcase_18 AC 623 ms
121,920 KB
testcase_19 AC 623 ms
124,364 KB
testcase_20 AC 672 ms
126,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from operator import itemgetter

N, Q = map(int, readline().split())
A = (0,) + tuple(map(int, readline().split()))


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data
        size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


tasks = []
for i, query in enumerate(readlines()):
    _, L, R, X = map(int, query.split())
    tasks.append((i, R, X, ))
    tasks.append((i, 1 - L, X))
tasks.sort(key=itemgetter(2), reverse=True)

nums = sorted(enumerate(A), key=itemgetter(1))

bit0 = BinaryIndexedTree([0] * (N + 10))
bit1 = BinaryIndexedTree([0] * (N + 10))

answers = [0] * Q
for i, n, x in tasks:
    while nums[-1][1] > x:
        j, a = nums.pop()
        bit0.add(j, a)
        bit1.add(j, -1)
    m = abs(n)
    a = bit1.get_sum(m)
    b = bit0.get_sum(m)
    S = a * x + b
    if n > 0:
        answers[i] += S
    else:
        answers[i] -= S

print('\n'.join(map(str, answers)))
0