結果

問題 No.1012 荷物収集
ユーザー roarisroaris
提出日時 2020-07-08 02:12:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 470 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 176,744 KB
最終ジャッジ日時 2024-10-02 00:22:34
合計ジャッジ時間 15,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,200 KB
testcase_01 AC 41 ms
54,044 KB
testcase_02 AC 40 ms
54,820 KB
testcase_03 AC 40 ms
54,920 KB
testcase_04 AC 344 ms
176,212 KB
testcase_05 AC 334 ms
176,132 KB
testcase_06 AC 325 ms
176,404 KB
testcase_07 AC 336 ms
176,516 KB
testcase_08 AC 337 ms
176,144 KB
testcase_09 AC 325 ms
176,132 KB
testcase_10 AC 319 ms
176,116 KB
testcase_11 AC 335 ms
176,376 KB
testcase_12 AC 342 ms
176,744 KB
testcase_13 AC 334 ms
176,212 KB
testcase_14 AC 50 ms
62,896 KB
testcase_15 AC 59 ms
68,580 KB
testcase_16 AC 53 ms
64,660 KB
testcase_17 AC 59 ms
69,092 KB
testcase_18 AC 52 ms
65,648 KB
testcase_19 AC 47 ms
63,448 KB
testcase_20 AC 48 ms
62,932 KB
testcase_21 AC 57 ms
64,960 KB
testcase_22 AC 53 ms
65,240 KB
testcase_23 AC 50 ms
63,312 KB
testcase_24 AC 331 ms
138,272 KB
testcase_25 AC 415 ms
154,712 KB
testcase_26 AC 243 ms
101,108 KB
testcase_27 AC 119 ms
84,448 KB
testcase_28 AC 391 ms
123,408 KB
testcase_29 AC 247 ms
106,628 KB
testcase_30 AC 415 ms
159,440 KB
testcase_31 AC 219 ms
97,484 KB
testcase_32 AC 185 ms
101,504 KB
testcase_33 AC 260 ms
118,888 KB
testcase_34 AC 299 ms
123,584 KB
testcase_35 AC 390 ms
143,428 KB
testcase_36 AC 287 ms
120,864 KB
testcase_37 AC 266 ms
121,160 KB
testcase_38 AC 368 ms
137,316 KB
testcase_39 AC 203 ms
104,264 KB
testcase_40 AC 229 ms
110,084 KB
testcase_41 AC 470 ms
169,940 KB
testcase_42 AC 259 ms
117,996 KB
testcase_43 AC 348 ms
117,308 KB
testcase_44 AC 41 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def compress(l):
    l = list(set(l))
    l.sort()
    idx = defaultdict(int)

    for i in range(len(l)):
        idx[l[i]] = i
    
    return idx

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(n+1)
    
    def add(self, i, x):
        i += 1
        
        while i<=self.n:
            self.bit[i] += x
            i += i&(-i)

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

N, Q = map(int, input().split())
xw = [tuple(map(int, input().split())) for _ in range(N)]
X = list(map(int, input().split()))
l = [xwi[0] for xwi in xw]+X
idx = compress(l)
n = len(list(idx.keys()))
bit1 = BIT(n)
bit2 = BIT(n)

for x, w in xw:
    bit1.add(idx[x], w)
    bit2.add(idx[x], x*w)

for Xi in X:
    lw = bit1.acc(idx[Xi])
    lxw = bit2.acc(idx[Xi])
    rw = bit1.acc(n)-bit1.acc(idx[Xi])
    rxw = bit2.acc(n)-bit2.acc(idx[Xi])
    print(Xi*lw-lxw+rxw-Xi*rw)
0