結果

問題 No.1012 荷物収集
ユーザー kohei2019kohei2019
提出日時 2022-07-12 00:02:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 103,468 KB
最終ジャッジ日時 2024-06-22 19:32:59
合計ジャッジ時間 13,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,624 KB
testcase_01 AC 34 ms
53,512 KB
testcase_02 AC 34 ms
53,308 KB
testcase_03 AC 35 ms
53,352 KB
testcase_04 AC 182 ms
102,952 KB
testcase_05 AC 178 ms
103,468 KB
testcase_06 AC 179 ms
103,216 KB
testcase_07 AC 182 ms
103,220 KB
testcase_08 AC 185 ms
103,344 KB
testcase_09 AC 182 ms
103,460 KB
testcase_10 AC 180 ms
103,220 KB
testcase_11 AC 187 ms
103,080 KB
testcase_12 AC 184 ms
103,212 KB
testcase_13 AC 183 ms
103,336 KB
testcase_14 AC 39 ms
55,164 KB
testcase_15 AC 46 ms
62,624 KB
testcase_16 AC 39 ms
54,500 KB
testcase_17 AC 43 ms
62,088 KB
testcase_18 AC 45 ms
61,988 KB
testcase_19 AC 40 ms
54,612 KB
testcase_20 AC 41 ms
55,088 KB
testcase_21 AC 41 ms
55,156 KB
testcase_22 AC 39 ms
55,476 KB
testcase_23 AC 39 ms
54,340 KB
testcase_24 AC 375 ms
94,348 KB
testcase_25 AC 475 ms
101,000 KB
testcase_26 AC 286 ms
82,316 KB
testcase_27 AC 122 ms
77,856 KB
testcase_28 AC 469 ms
94,364 KB
testcase_29 AC 321 ms
82,100 KB
testcase_30 AC 475 ms
97,584 KB
testcase_31 AC 240 ms
93,452 KB
testcase_32 AC 199 ms
84,296 KB
testcase_33 AC 281 ms
90,072 KB
testcase_34 AC 299 ms
94,548 KB
testcase_35 AC 409 ms
89,772 KB
testcase_36 AC 284 ms
96,380 KB
testcase_37 AC 308 ms
81,584 KB
testcase_38 AC 392 ms
94,700 KB
testcase_39 AC 206 ms
81,216 KB
testcase_40 AC 239 ms
85,340 KB
testcase_41 AC 523 ms
98,344 KB
testcase_42 AC 269 ms
83,720 KB
testcase_43 AC 369 ms
89,536 KB
testcase_44 AC 38 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
lsxw = []
v = 0
rw = 0
for i in range(N):
    x,w = map(int,input().split())
    lsxw.append((x,w))
    v += x*w
    rw += w
lsxw.sort(reverse=True)
ll = list(map(int,input().split()))
lsX = []
for i in range(Q):
    X = ll[i]
    lsX.append((X,i))
lsX.sort()
lsans = [0]*Q
lw = 0
#print(v,rw,lw)
now = 0
for i in range(Q):
    xx,ind = lsX[i]
    while lsxw and lsxw[-1][0] <= xx:
        x,w = lsxw.pop()
        v -= rw*(x-now)
        v += lw*(x-now)
        now = x
        rw -= w
        lw += w
    v -= rw*(xx-now)
    v += lw*(xx-now)
    now = xx
    lsans[ind] = v
print(*lsans,sep='\n')


0