結果

問題 No.1012 荷物収集
ユーザー qibqib
提出日時 2022-10-27 19:22:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 109,696 KB
最終ジャッジ日時 2024-07-05 04:54:40
合計ジャッジ時間 13,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 310 ms
103,936 KB
testcase_05 AC 307 ms
104,064 KB
testcase_06 AC 264 ms
104,064 KB
testcase_07 AC 243 ms
104,320 KB
testcase_08 AC 248 ms
104,064 KB
testcase_09 AC 247 ms
104,192 KB
testcase_10 AC 249 ms
104,320 KB
testcase_11 AC 244 ms
103,808 KB
testcase_12 AC 244 ms
104,320 KB
testcase_13 AC 246 ms
103,936 KB
testcase_14 AC 51 ms
59,136 KB
testcase_15 AC 62 ms
64,512 KB
testcase_16 AC 56 ms
60,672 KB
testcase_17 AC 62 ms
63,872 KB
testcase_18 AC 60 ms
62,592 KB
testcase_19 AC 50 ms
58,624 KB
testcase_20 AC 49 ms
53,888 KB
testcase_21 AC 56 ms
60,544 KB
testcase_22 AC 57 ms
61,056 KB
testcase_23 AC 53 ms
59,776 KB
testcase_24 AC 272 ms
96,884 KB
testcase_25 AC 352 ms
100,608 KB
testcase_26 AC 267 ms
92,800 KB
testcase_27 AC 144 ms
80,256 KB
testcase_28 AC 351 ms
107,644 KB
testcase_29 AC 296 ms
96,896 KB
testcase_30 AC 368 ms
100,480 KB
testcase_31 AC 158 ms
87,680 KB
testcase_32 AC 175 ms
85,376 KB
testcase_33 AC 198 ms
91,392 KB
testcase_34 AC 193 ms
89,728 KB
testcase_35 AC 330 ms
100,480 KB
testcase_36 AC 174 ms
90,752 KB
testcase_37 AC 291 ms
96,512 KB
testcase_38 AC 292 ms
100,736 KB
testcase_39 AC 196 ms
84,608 KB
testcase_40 AC 197 ms
85,504 KB
testcase_41 AC 389 ms
109,696 KB
testcase_42 AC 217 ms
90,496 KB
testcase_43 AC 286 ms
92,160 KB
testcase_44 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 30

import bisect as bs

n, q = map(int, input().split())
items = [list(map(int, input().split())) for _ in range(n)]
items.append([- INF, 0])
items.append([INF, 0])

items.sort(key=lambda x: x[0])
xs = [items[i][0] for i in range(len(items))]

xws = [0 for _ in range(n + 2)]
ws = [0 for _ in range(n + 2)]
for i in range(1, n + 2):
	xi, wi = items[i]
	xws[i] = xws[i - 1] + xi * wi
	ws[i] = ws[i - 1] + wi

queries = list(map(int, input().split()))
for i in range(q):
	k = bs.bisect_right(xs, queries[i])
	print(xws[n] - 2 * xws[k - 1] + queries[i] * (2 * ws[k - 1] - ws[n]))
0