結果

問題 No.1012 荷物収集
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-25 07:24:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,328 KB
最終ジャッジ日時 2024-06-10 09:50:08
合計ジャッジ時間 13,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,632 KB
testcase_01 AC 38 ms
52,404 KB
testcase_02 AC 38 ms
52,944 KB
testcase_03 AC 38 ms
54,188 KB
testcase_04 AC 182 ms
112,076 KB
testcase_05 AC 174 ms
111,944 KB
testcase_06 AC 180 ms
112,328 KB
testcase_07 AC 178 ms
112,328 KB
testcase_08 AC 181 ms
112,192 KB
testcase_09 AC 179 ms
111,944 KB
testcase_10 AC 178 ms
112,068 KB
testcase_11 AC 180 ms
112,196 KB
testcase_12 AC 183 ms
112,076 KB
testcase_13 AC 179 ms
112,200 KB
testcase_14 AC 43 ms
58,972 KB
testcase_15 AC 53 ms
63,096 KB
testcase_16 AC 48 ms
61,356 KB
testcase_17 AC 54 ms
64,180 KB
testcase_18 AC 52 ms
62,236 KB
testcase_19 AC 44 ms
58,648 KB
testcase_20 AC 42 ms
53,488 KB
testcase_21 AC 47 ms
60,520 KB
testcase_22 AC 49 ms
61,628 KB
testcase_23 AC 47 ms
61,520 KB
testcase_24 AC 289 ms
90,156 KB
testcase_25 AC 413 ms
98,676 KB
testcase_26 AC 315 ms
94,904 KB
testcase_27 AC 133 ms
79,572 KB
testcase_28 AC 413 ms
101,164 KB
testcase_29 AC 388 ms
102,576 KB
testcase_30 AC 455 ms
103,512 KB
testcase_31 AC 130 ms
85,552 KB
testcase_32 AC 164 ms
84,988 KB
testcase_33 AC 182 ms
91,044 KB
testcase_34 AC 178 ms
89,660 KB
testcase_35 AC 388 ms
97,908 KB
testcase_36 AC 146 ms
88,564 KB
testcase_37 AC 381 ms
100,224 KB
testcase_38 AC 328 ms
97,620 KB
testcase_39 AC 204 ms
84,712 KB
testcase_40 AC 205 ms
84,752 KB
testcase_41 AC 471 ms
102,820 KB
testcase_42 AC 222 ms
86,176 KB
testcase_43 AC 330 ms
95,116 KB
testcase_44 AC 39 ms
53,944 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