結果

問題 No.1012 荷物収集
ユーザー qqqqqqqq
提出日時 2020-03-26 17:51:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 119,308 KB
最終ジャッジ日時 2025-01-02 02:55:36
合計ジャッジ時間 12,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,292 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 33 ms
53,740 KB
testcase_03 AC 32 ms
53,228 KB
testcase_04 AC 181 ms
119,056 KB
testcase_05 AC 186 ms
119,180 KB
testcase_06 AC 181 ms
119,056 KB
testcase_07 AC 181 ms
119,172 KB
testcase_08 AC 185 ms
119,308 KB
testcase_09 AC 187 ms
119,064 KB
testcase_10 AC 183 ms
119,060 KB
testcase_11 AC 195 ms
119,164 KB
testcase_12 AC 189 ms
119,264 KB
testcase_13 AC 186 ms
119,184 KB
testcase_14 AC 39 ms
59,188 KB
testcase_15 AC 47 ms
63,300 KB
testcase_16 AC 39 ms
61,516 KB
testcase_17 AC 46 ms
64,040 KB
testcase_18 AC 44 ms
62,512 KB
testcase_19 AC 38 ms
59,604 KB
testcase_20 AC 37 ms
53,996 KB
testcase_21 AC 41 ms
61,164 KB
testcase_22 AC 42 ms
61,512 KB
testcase_23 AC 40 ms
61,536 KB
testcase_24 AC 262 ms
101,408 KB
testcase_25 AC 404 ms
113,024 KB
testcase_26 AC 315 ms
98,436 KB
testcase_27 AC 121 ms
80,380 KB
testcase_28 AC 409 ms
109,728 KB
testcase_29 AC 381 ms
105,752 KB
testcase_30 AC 452 ms
115,736 KB
testcase_31 AC 117 ms
86,576 KB
testcase_32 AC 147 ms
85,424 KB
testcase_33 AC 189 ms
90,084 KB
testcase_34 AC 160 ms
90,236 KB
testcase_35 AC 361 ms
108,544 KB
testcase_36 AC 130 ms
88,192 KB
testcase_37 AC 356 ms
102,876 KB
testcase_38 AC 307 ms
104,708 KB
testcase_39 AC 176 ms
87,096 KB
testcase_40 AC 177 ms
88,620 KB
testcase_41 AC 430 ms
118,684 KB
testcase_42 AC 206 ms
92,340 KB
testcase_43 AC 298 ms
97,664 KB
testcase_44 AC 33 ms
53,068 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