結果

問題 No.1012 荷物収集
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-29 03:12:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 98,560 KB
最終ジャッジ日時 2024-10-04 11:16:52
合計ジャッジ時間 12,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 32 ms
51,456 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 139 ms
97,920 KB
testcase_05 AC 138 ms
98,304 KB
testcase_06 AC 143 ms
98,176 KB
testcase_07 AC 147 ms
98,560 KB
testcase_08 AC 144 ms
97,920 KB
testcase_09 AC 140 ms
98,176 KB
testcase_10 AC 138 ms
97,920 KB
testcase_11 AC 141 ms
98,428 KB
testcase_12 AC 146 ms
98,304 KB
testcase_13 AC 141 ms
98,300 KB
testcase_14 AC 34 ms
53,376 KB
testcase_15 AC 44 ms
62,848 KB
testcase_16 AC 40 ms
59,264 KB
testcase_17 AC 46 ms
63,104 KB
testcase_18 AC 43 ms
60,928 KB
testcase_19 AC 35 ms
53,248 KB
testcase_20 AC 35 ms
53,248 KB
testcase_21 AC 40 ms
59,392 KB
testcase_22 AC 40 ms
59,520 KB
testcase_23 AC 38 ms
58,496 KB
testcase_24 AC 349 ms
89,984 KB
testcase_25 AC 465 ms
94,076 KB
testcase_26 AC 254 ms
81,408 KB
testcase_27 AC 96 ms
77,024 KB
testcase_28 AC 426 ms
92,800 KB
testcase_29 AC 276 ms
81,792 KB
testcase_30 AC 446 ms
93,696 KB
testcase_31 AC 207 ms
86,548 KB
testcase_32 AC 176 ms
82,176 KB
testcase_33 AC 251 ms
88,448 KB
testcase_34 AC 266 ms
89,816 KB
testcase_35 AC 373 ms
89,856 KB
testcase_36 AC 248 ms
89,396 KB
testcase_37 AC 261 ms
82,048 KB
testcase_38 AC 367 ms
89,472 KB
testcase_39 AC 187 ms
82,048 KB
testcase_40 AC 219 ms
84,096 KB
testcase_41 AC 486 ms
95,616 KB
testcase_42 AC 256 ms
85,120 KB
testcase_43 AC 340 ms
87,808 KB
testcase_44 AC 35 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, Q = map(int, input().split())
task = []
for _ in range(N):
    x, w = map(int, input().split())
    task.append((x, w))
for i, x in enumerate(map(int, input().split())):
    task.append((x, ~i))

task.sort()
ans = [0] * Q


def calc():
    weight = 0
    score = 0
    now = 0
    for x, i in task:
        d = abs(x - now)
        score += d * weight
        if i < 0:
            i = ~i
            ans[i] += score
        else:
            weight += i
        now = x


calc()
task.reverse()
calc()
print(*ans, sep="\n")
0