結果

問題 No.877 Range ReLU Query
ユーザー 👑 rin204rin204
提出日時 2022-07-06 07:26:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 1,631 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 151,808 KB
最終ジャッジ日時 2024-11-08 10:44:18
合計ジャッジ時間 9,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 73 ms
68,736 KB
testcase_02 AC 72 ms
68,608 KB
testcase_03 AC 88 ms
75,776 KB
testcase_04 AC 50 ms
60,032 KB
testcase_05 AC 60 ms
63,232 KB
testcase_06 AC 62 ms
63,872 KB
testcase_07 AC 60 ms
62,848 KB
testcase_08 AC 82 ms
73,472 KB
testcase_09 AC 53 ms
60,288 KB
testcase_10 AC 72 ms
69,248 KB
testcase_11 AC 789 ms
143,672 KB
testcase_12 AC 681 ms
132,920 KB
testcase_13 AC 620 ms
128,588 KB
testcase_14 AC 633 ms
131,424 KB
testcase_15 AC 848 ms
151,808 KB
testcase_16 AC 793 ms
146,928 KB
testcase_17 AC 822 ms
149,804 KB
testcase_18 AC 809 ms
147,136 KB
testcase_19 AC 660 ms
137,072 KB
testcase_20 AC 712 ms
148,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.n0 = 1 << (n.bit_length() - 1)
        self.tree = [0] * (n + 1)
    
    def range_sum(self, l, r):
        return self.sum(r - 1) - self.sum(l - 1)
        
    def sum(self, i):
        i += 1
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
        
    def get(self, i):
        return self.sum(i) - self.sum(i - 1)
 
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i
         
    def lower_bound(self, x):
        pos = 0
        plus = self.n0
        while plus > 0:
            if pos + plus <= self.size and self.tree[pos + plus] < x:
                x -= self.tree[pos + plus]
                pos += plus
            plus //= 2
        return pos

n, Q = map(int, input().split())
A = list(map(int, input().split()))
se = set(A)
L = [[] for _ in range(n)]
R = [[] for _ in range(n)]
X = [0] * Q
for i in range(Q):
    _, l, r, X[i] = map(int, input().split())
    L[l - 1].append(i)
    R[r - 1].append(i)
    se.add(X[i])

lst = sorted(se)
dic = {l:i for i, l in enumerate(lst)}
le = len(lst) + 1
tot = Bit(le)
cnt = Bit(le)
ans = [0] * Q
for i, a in enumerate(A):
    for j in L[i]:
        x = dic[X[j]]
        tmp = tot.range_sum(x + 1, le) - cnt.range_sum(x + 1, le) * X[j]
        ans[j] -= tmp
    
    cnt.add(dic[a], 1)
    tot.add(dic[a], a)
    for j in R[i]:
        x = dic[X[j]]
        tmp = tot.range_sum(x + 1, le) - cnt.range_sum(x + 1, le) * X[j]
        ans[j] += tmp
    
print(*ans, sep="\n")
0