結果

問題 No.1012 荷物収集
ユーザー 👑 rin204rin204
提出日時 2022-07-10 17:55:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 174,088 KB
最終ジャッジ日時 2024-06-11 07:42:52
合計ジャッジ時間 16,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 433 ms
173,824 KB
testcase_05 AC 411 ms
173,688 KB
testcase_06 AC 419 ms
173,944 KB
testcase_07 AC 416 ms
173,668 KB
testcase_08 AC 412 ms
173,808 KB
testcase_09 AC 416 ms
173,952 KB
testcase_10 AC 419 ms
174,088 KB
testcase_11 AC 406 ms
173,696 KB
testcase_12 AC 413 ms
173,696 KB
testcase_13 AC 422 ms
173,752 KB
testcase_14 AC 49 ms
60,928 KB
testcase_15 AC 63 ms
69,120 KB
testcase_16 AC 54 ms
62,336 KB
testcase_17 AC 60 ms
68,380 KB
testcase_18 AC 58 ms
66,560 KB
testcase_19 AC 51 ms
60,672 KB
testcase_20 AC 51 ms
62,336 KB
testcase_21 AC 52 ms
63,232 KB
testcase_22 AC 54 ms
64,128 KB
testcase_23 AC 51 ms
61,696 KB
testcase_24 AC 406 ms
112,512 KB
testcase_25 AC 543 ms
153,088 KB
testcase_26 AC 321 ms
115,584 KB
testcase_27 AC 146 ms
84,096 KB
testcase_28 AC 487 ms
121,632 KB
testcase_29 AC 329 ms
120,704 KB
testcase_30 AC 506 ms
157,192 KB
testcase_31 AC 268 ms
111,152 KB
testcase_32 AC 230 ms
102,144 KB
testcase_33 AC 318 ms
117,368 KB
testcase_34 AC 332 ms
105,696 KB
testcase_35 AC 443 ms
141,784 KB
testcase_36 AC 326 ms
120,448 KB
testcase_37 AC 316 ms
119,424 KB
testcase_38 AC 430 ms
136,488 KB
testcase_39 AC 241 ms
95,288 KB
testcase_40 AC 269 ms
108,244 KB
testcase_41 AC 559 ms
165,744 KB
testcase_42 AC 309 ms
115,600 KB
testcase_43 AC 401 ms
132,680 KB
testcase_44 AC 39 ms
52,864 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())
xw = [list(map(int, input().split())) for _ in range(n)]
X = list(map(int, input().split()))
se = set()
for x, _ in xw:
    se.add(x)
for x in X:
    se.add(x)
lst = sorted(se)
dic = {l:i for i, l in enumerate(lst)}
le = len(lst)
cnt = Bit(le)
tot = Bit(le)
for x, w in xw:
    cnt.add(dic[x], w)
    tot.add(dic[x], x * w)
for x in X:
    ans = x * cnt.sum(dic[x]) - tot.sum(dic[x])
    ans += tot.range_sum(dic[x], le) - x * cnt.range_sum(dic[x], le)
    print(ans)
0