結果

問題 No.1012 荷物収集
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-25 07:24:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 112,656 KB
最終ジャッジ日時 2025-01-01 19:49:00
合計ジャッジ時間 12,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,580 KB
testcase_01 AC 31 ms
52,412 KB
testcase_02 AC 31 ms
53,228 KB
testcase_03 AC 32 ms
54,088 KB
testcase_04 AC 158 ms
112,392 KB
testcase_05 AC 159 ms
112,396 KB
testcase_06 AC 165 ms
112,400 KB
testcase_07 AC 159 ms
112,408 KB
testcase_08 AC 155 ms
112,276 KB
testcase_09 AC 163 ms
112,528 KB
testcase_10 AC 166 ms
112,656 KB
testcase_11 AC 168 ms
112,528 KB
testcase_12 AC 168 ms
112,396 KB
testcase_13 AC 169 ms
112,400 KB
testcase_14 AC 40 ms
59,520 KB
testcase_15 AC 48 ms
64,016 KB
testcase_16 AC 42 ms
61,316 KB
testcase_17 AC 47 ms
63,236 KB
testcase_18 AC 45 ms
62,440 KB
testcase_19 AC 40 ms
59,388 KB
testcase_20 AC 37 ms
53,828 KB
testcase_21 AC 41 ms
60,720 KB
testcase_22 AC 41 ms
62,032 KB
testcase_23 AC 39 ms
61,408 KB
testcase_24 AC 283 ms
90,716 KB
testcase_25 AC 354 ms
98,872 KB
testcase_26 AC 275 ms
94,756 KB
testcase_27 AC 112 ms
79,900 KB
testcase_28 AC 366 ms
100,928 KB
testcase_29 AC 335 ms
102,904 KB
testcase_30 AC 407 ms
104,204 KB
testcase_31 AC 122 ms
85,920 KB
testcase_32 AC 145 ms
85,492 KB
testcase_33 AC 180 ms
91,068 KB
testcase_34 AC 153 ms
89,268 KB
testcase_35 AC 322 ms
98,084 KB
testcase_36 AC 131 ms
88,644 KB
testcase_37 AC 322 ms
100,496 KB
testcase_38 AC 285 ms
97,392 KB
testcase_39 AC 176 ms
84,900 KB
testcase_40 AC 173 ms
84,712 KB
testcase_41 AC 391 ms
103,132 KB
testcase_42 AC 193 ms
86,500 KB
testcase_43 AC 289 ms
95,284 KB
testcase_44 AC 33 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, q = map(int, input().split())
L = [[0, 0] for _ in range(n)]
xs = [0]*n
for i in range(n):
    x, w = map(int, input().split())
    L[i][0] = x
    L[i][1] = w
    xs[i] = x
X = list(map(int, input().split()))

L.sort()
xs.sort()

ws = [0]*n
wxs = [0]*n
for i in range(n):
    x, w = L[i]
    ws[i] = w
    wxs[i] = x*w

cumw = [0]+ws
cumxw = [0]+wxs
from itertools import accumulate
cumw = list(accumulate(cumw))
cumxw = list(accumulate(cumxw))

import bisect
for x in X:
    k = bisect.bisect_right(xs, x)
    if k == 0:
        ans = cumxw[-1] - cumw[-1]*x
    elif k == n:
        ans = -cumxw[-1] + cumw[-1]*x
    else:
        ans = x*(cumw[-1]-2*(cumw[-1]-cumw[k]))+(cumxw[-1]-2*cumxw[k])
    print(ans)
0