結果

問題 No.2065 Sum of Min
ユーザー 👑 rin204rin204
提出日時 2022-09-02 21:31:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 824 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 104,416 KB
最終ジャッジ日時 2024-11-16 02:26:21
合計ジャッジ時間 17,855 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 40 ms
52,736 KB
testcase_04 AC 493 ms
102,744 KB
testcase_05 AC 521 ms
101,648 KB
testcase_06 AC 662 ms
103,392 KB
testcase_07 AC 261 ms
98,692 KB
testcase_08 AC 638 ms
104,020 KB
testcase_09 AC 811 ms
103,480 KB
testcase_10 AC 754 ms
103,504 KB
testcase_11 AC 766 ms
103,428 KB
testcase_12 AC 791 ms
103,360 KB
testcase_13 AC 802 ms
104,292 KB
testcase_14 AC 799 ms
103,756 KB
testcase_15 AC 805 ms
103,820 KB
testcase_16 AC 816 ms
104,416 KB
testcase_17 AC 796 ms
103,256 KB
testcase_18 AC 791 ms
103,252 KB
testcase_19 AC 824 ms
103,560 KB
testcase_20 AC 823 ms
103,764 KB
testcase_21 AC 820 ms
104,216 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()))
B = [(a, i) for i, a in enumerate(A)]
B.sort()
query = []
for i in range(Q):
    l, r, x = map(int, input().split())
    l -= 1
    query.append((x, l, r, i))
query.sort()
ans = 0

cnt = Bit(n)
tot = Bit(n)
B.append((1 << 50, -1))
t = 0
ans = [0] * Q
for x, l, r, i in query:
    while B[t][0] < x:
        tot.add(B[t][1], B[t][0])
        cnt.add(B[t][1], 1)
        t += 1

    cn = cnt.range_sum(l, r)
    to = tot.range_sum(l, r)
    ans[i] = to + (r - l - cn) * x

print(*ans, sep="\n")
0