結果

問題 No.1012 荷物収集
ユーザー ryusukeryusuke
提出日時 2022-02-20 18:46:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 114,476 KB
最終ジャッジ日時 2024-06-29 10:55:11
合計ジャッジ時間 9,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,396 KB
testcase_01 AC 32 ms
53,620 KB
testcase_02 AC 32 ms
52,872 KB
testcase_03 AC 33 ms
52,260 KB
testcase_04 AC 197 ms
114,084 KB
testcase_05 AC 190 ms
114,028 KB
testcase_06 AC 190 ms
114,040 KB
testcase_07 AC 189 ms
114,128 KB
testcase_08 AC 189 ms
114,476 KB
testcase_09 AC 202 ms
114,120 KB
testcase_10 AC 216 ms
114,088 KB
testcase_11 AC 203 ms
114,420 KB
testcase_12 AC 194 ms
114,084 KB
testcase_13 AC 197 ms
114,216 KB
testcase_14 AC 44 ms
60,716 KB
testcase_15 AC 54 ms
66,040 KB
testcase_16 AC 47 ms
61,816 KB
testcase_17 AC 52 ms
63,936 KB
testcase_18 AC 49 ms
65,048 KB
testcase_19 AC 39 ms
59,596 KB
testcase_20 AC 40 ms
54,724 KB
testcase_21 AC 42 ms
61,152 KB
testcase_22 AC 44 ms
61,352 KB
testcase_23 AC 41 ms
60,724 KB
testcase_24 AC 212 ms
91,768 KB
testcase_25 AC 295 ms
108,072 KB
testcase_26 AC 221 ms
93,460 KB
testcase_27 AC 113 ms
78,992 KB
testcase_28 AC 292 ms
101,792 KB
testcase_29 AC 259 ms
100,972 KB
testcase_30 AC 313 ms
110,244 KB
testcase_31 AC 124 ms
88,128 KB
testcase_32 AC 147 ms
85,004 KB
testcase_33 AC 168 ms
88,280 KB
testcase_34 AC 167 ms
89,208 KB
testcase_35 AC 269 ms
103,708 KB
testcase_36 AC 152 ms
90,472 KB
testcase_37 AC 240 ms
97,584 KB
testcase_38 AC 239 ms
100,836 KB
testcase_39 AC 149 ms
84,480 KB
testcase_40 AC 155 ms
87,184 KB
testcase_41 AC 300 ms
113,988 KB
testcase_42 AC 181 ms
89,880 KB
testcase_43 AC 230 ms
99,060 KB
testcase_44 AC 31 ms
52,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n, q = map(int, input().split())
xw = [list(map(int, input().split())) for _ in range(n)]
x = list(map(int, input().split()))

xw.sort(key=lambda x: x[0])

sort_list = [xw[i][0] for i in range(n)]

accum_xw = [0]
accum_w = [0]
for i in range(n):
    accum_xw.append(accum_xw[-1] + xw[i][0] * xw[i][1])
    accum_w.append(accum_w[-1] + xw[i][1])

for i in range(q):
    t = bisect_left(sort_list, x[i])

    W = 2 * x[i] * accum_w[t]
    X = -2 * accum_xw[t]
    Y = accum_xw[-1]
    Z = -x[i] * accum_w[-1]
    ans = W + X + Y + Z
    print(ans)
0