結果

問題 No.1012 荷物収集
ユーザー qqqqqqqq
提出日時 2020-03-26 17:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 118,728 KB
最終ジャッジ日時 2024-06-10 13:14:18
合計ジャッジ時間 12,669 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,072 KB
testcase_01 AC 36 ms
52,564 KB
testcase_02 AC 38 ms
52,076 KB
testcase_03 AC 37 ms
52,692 KB
testcase_04 AC 195 ms
118,332 KB
testcase_05 AC 194 ms
118,336 KB
testcase_06 AC 195 ms
118,452 KB
testcase_07 AC 196 ms
118,460 KB
testcase_08 AC 201 ms
118,720 KB
testcase_09 AC 191 ms
118,336 KB
testcase_10 AC 196 ms
118,332 KB
testcase_11 AC 197 ms
118,728 KB
testcase_12 AC 195 ms
118,588 KB
testcase_13 AC 194 ms
118,468 KB
testcase_14 AC 41 ms
58,240 KB
testcase_15 AC 49 ms
64,324 KB
testcase_16 AC 44 ms
61,604 KB
testcase_17 AC 47 ms
62,968 KB
testcase_18 AC 48 ms
61,800 KB
testcase_19 AC 42 ms
57,896 KB
testcase_20 AC 40 ms
54,300 KB
testcase_21 AC 45 ms
60,460 KB
testcase_22 AC 47 ms
61,648 KB
testcase_23 AC 45 ms
59,804 KB
testcase_24 AC 292 ms
100,972 KB
testcase_25 AC 399 ms
112,452 KB
testcase_26 AC 313 ms
97,840 KB
testcase_27 AC 121 ms
79,556 KB
testcase_28 AC 415 ms
109,656 KB
testcase_29 AC 401 ms
105,536 KB
testcase_30 AC 461 ms
115,464 KB
testcase_31 AC 122 ms
85,736 KB
testcase_32 AC 158 ms
84,656 KB
testcase_33 AC 172 ms
89,616 KB
testcase_34 AC 163 ms
89,520 KB
testcase_35 AC 372 ms
107,944 KB
testcase_36 AC 142 ms
88,732 KB
testcase_37 AC 374 ms
102,556 KB
testcase_38 AC 313 ms
104,744 KB
testcase_39 AC 193 ms
86,720 KB
testcase_40 AC 189 ms
88,424 KB
testcase_41 AC 453 ms
117,828 KB
testcase_42 AC 216 ms
91,632 KB
testcase_43 AC 324 ms
96,936 KB
testcase_44 AC 38 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
reader = (s.rstrip() for s in sys.stdin)
input = reader.__next__

n,q = map(int, input().split())
x_set = set()
xw = []
for i in range(n):
    x,w = map(int, input().split())
    x_set.add(x)
    xw.append([x,w])
xw.sort()
dd = sorted(x_set)

xs = list(map(int, input().split()))

w_sum = [0]
xw_sum = [0]
for x,w in xw:
    w_sum.append(w_sum[-1] + w)
    xw_sum.append(xw_sum[-1] + x*w)

from bisect import bisect_left
ans = []
for xi in xs:
    j = bisect_left(dd, xi)
    cost = w_sum[j]*xi - xw_sum[j]
    cost += (xw_sum[-1]-xw_sum[j]) - (w_sum[-1]-w_sum[j])*xi
    ans.append(cost)
print(*ans, sep="\n")
0