結果

問題 No.1012 荷物収集
ユーザー H3PO4H3PO4
提出日時 2021-08-24 09:17:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 700 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,588 KB
最終ジャッジ日時 2024-11-14 00:41:25
合計ジャッジ時間 17,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 489 ms
51,584 KB
testcase_05 AC 489 ms
51,460 KB
testcase_06 AC 498 ms
51,460 KB
testcase_07 AC 493 ms
51,460 KB
testcase_08 AC 499 ms
51,456 KB
testcase_09 AC 495 ms
51,464 KB
testcase_10 AC 485 ms
51,556 KB
testcase_11 AC 477 ms
51,588 KB
testcase_12 AC 478 ms
51,464 KB
testcase_13 AC 496 ms
51,588 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 31 ms
11,008 KB
testcase_18 AC 30 ms
11,136 KB
testcase_19 AC 29 ms
11,008 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 469 ms
35,980 KB
testcase_25 AC 641 ms
44,312 KB
testcase_26 AC 362 ms
29,224 KB
testcase_27 AC 93 ms
15,104 KB
testcase_28 AC 614 ms
43,404 KB
testcase_29 AC 396 ms
31,616 KB
testcase_30 AC 659 ms
44,328 KB
testcase_31 AC 241 ms
24,852 KB
testcase_32 AC 200 ms
22,152 KB
testcase_33 AC 306 ms
28,472 KB
testcase_34 AC 328 ms
29,672 KB
testcase_35 AC 529 ms
38,808 KB
testcase_36 AC 302 ms
28,444 KB
testcase_37 AC 375 ms
30,188 KB
testcase_38 AC 495 ms
37,380 KB
testcase_39 AC 232 ms
22,988 KB
testcase_40 AC 261 ms
25,088 KB
testcase_41 AC 700 ms
47,636 KB
testcase_42 AC 302 ms
28,328 KB
testcase_43 AC 436 ms
34,976 KB
testcase_44 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N, Q = map(int, input().split())
freight = [tuple(map(int, input().split())) for _ in range(N)]
X = tuple(map(int, input().split()))

cost_x0 = sum(x * w for x, w in freight)
queries = []
for x, w in freight:
    queries.append((x, 1, w))
for i, x in enumerate(X):
    queries.append((x, 2, i))

queries.sort()
cost = cost_x0
cur_idx = 0
left_weight, right_weight = 0, sum(w for _, w in freight)
ans = [0] * Q
for q in queries:
    x = q[0]
    cost += left_weight * (x - cur_idx)
    cost -= right_weight * (x - cur_idx)
    cur_idx = x
    if q[1] == 1:
        left_weight += q[2]
        right_weight -= q[2]
    else:
        # assert q[1] == 2
        ans[q[2]] = cost
print(*ans, sep='\n')
0