結果

問題 No.1012 荷物収集
ユーザー nagitaosunagitaosu
提出日時 2020-03-20 23:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 129,244 KB
最終ジャッジ日時 2024-05-09 00:14:30
合計ジャッジ時間 13,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,480 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 46 ms
52,352 KB
testcase_04 AC 219 ms
128,988 KB
testcase_05 AC 223 ms
128,856 KB
testcase_06 AC 222 ms
128,988 KB
testcase_07 AC 231 ms
128,608 KB
testcase_08 AC 231 ms
129,112 KB
testcase_09 AC 222 ms
128,572 KB
testcase_10 AC 223 ms
128,852 KB
testcase_11 AC 225 ms
128,860 KB
testcase_12 AC 227 ms
129,116 KB
testcase_13 AC 227 ms
129,244 KB
testcase_14 AC 54 ms
58,624 KB
testcase_15 AC 66 ms
63,104 KB
testcase_16 AC 57 ms
59,904 KB
testcase_17 AC 63 ms
62,336 KB
testcase_18 AC 61 ms
61,824 KB
testcase_19 AC 51 ms
58,880 KB
testcase_20 AC 48 ms
53,760 KB
testcase_21 AC 55 ms
60,288 KB
testcase_22 AC 59 ms
61,056 KB
testcase_23 AC 60 ms
60,288 KB
testcase_24 AC 321 ms
95,200 KB
testcase_25 AC 440 ms
102,432 KB
testcase_26 AC 344 ms
102,696 KB
testcase_27 AC 160 ms
78,976 KB
testcase_28 AC 442 ms
111,844 KB
testcase_29 AC 408 ms
116,492 KB
testcase_30 AC 472 ms
110,012 KB
testcase_31 AC 152 ms
83,072 KB
testcase_32 AC 187 ms
84,096 KB
testcase_33 AC 208 ms
84,736 KB
testcase_34 AC 202 ms
84,608 KB
testcase_35 AC 401 ms
106,808 KB
testcase_36 AC 170 ms
84,480 KB
testcase_37 AC 381 ms
106,484 KB
testcase_38 AC 344 ms
103,104 KB
testcase_39 AC 221 ms
86,272 KB
testcase_40 AC 224 ms
88,960 KB
testcase_41 AC 483 ms
123,216 KB
testcase_42 AC 264 ms
92,928 KB
testcase_43 AC 346 ms
106,156 KB
testcase_44 AC 44 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
input = sys.stdin.readline
import bisect

n, q = map(int, input().split())
places = []
r_x = [0] * n
r_1 = [0] * n
l_x = [0] * n
l_1 = [0] * n
xw = []
for i in range(n):
    x, w = map(int, input().split())
    xw.append((x, w))
xw.sort()

for i, (x, w) in enumerate(xw):
    places.append(x)
    r_x[i] = w
    l_x[i] = -w
    r_1[i] = -(x * w)
    l_1[i] = x * w

r_x_cum = [0]
r_1_cum = [0]
for item in r_x:
    r_x_cum.append(r_x_cum[-1] + item)
for item in r_1:
    r_1_cum.append(r_1_cum[-1] + item)
l_x_cum = [0]
l_1_cum = [0]
for item in l_x[::-1]:
    l_x_cum.append(l_x_cum[-1] + item)
for item in l_1[::-1]:
    l_1_cum.append(l_1_cum[-1] + item)

q = [int(item) for item in input().split()]
for np in q:
    r_index = bisect.bisect_left(places, np)
    l_index = n - r_index
    ans = r_x_cum[r_index] * np + r_1_cum[r_index]
    ans += l_x_cum[l_index] * np + l_1_cum[l_index]
    print(ans)
0