結果

問題 No.1012 荷物収集
ユーザー maspymaspy
提出日時 2020-03-21 00:02:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,106 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,792 KB
最終ジャッジ日時 2024-12-15 21:45:35
合計ジャッジ時間 39,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
43,964 KB
testcase_01 AC 505 ms
43,960 KB
testcase_02 AC 509 ms
43,960 KB
testcase_03 AC 504 ms
44,468 KB
testcase_04 AC 883 ms
79,056 KB
testcase_05 AC 881 ms
79,444 KB
testcase_06 AC 896 ms
78,940 KB
testcase_07 AC 893 ms
79,320 KB
testcase_08 AC 892 ms
79,188 KB
testcase_09 AC 896 ms
78,900 KB
testcase_10 AC 886 ms
79,568 KB
testcase_11 AC 885 ms
79,668 KB
testcase_12 AC 891 ms
79,064 KB
testcase_13 AC 895 ms
79,688 KB
testcase_14 AC 509 ms
44,224 KB
testcase_15 AC 508 ms
43,832 KB
testcase_16 AC 504 ms
43,968 KB
testcase_17 AC 504 ms
44,544 KB
testcase_18 AC 511 ms
44,208 KB
testcase_19 AC 509 ms
44,092 KB
testcase_20 AC 504 ms
44,220 KB
testcase_21 AC 505 ms
44,228 KB
testcase_22 AC 509 ms
44,472 KB
testcase_23 AC 506 ms
43,960 KB
testcase_24 AC 906 ms
65,952 KB
testcase_25 AC 1,030 ms
74,172 KB
testcase_26 AC 800 ms
55,092 KB
testcase_27 AC 566 ms
45,488 KB
testcase_28 AC 1,036 ms
71,764 KB
testcase_29 AC 843 ms
55,104 KB
testcase_30 AC 1,070 ms
72,092 KB
testcase_31 AC 684 ms
58,560 KB
testcase_32 AC 653 ms
52,280 KB
testcase_33 AC 753 ms
61,120 KB
testcase_34 AC 782 ms
62,904 KB
testcase_35 AC 954 ms
65,856 KB
testcase_36 AC 738 ms
62,488 KB
testcase_37 AC 818 ms
54,328 KB
testcase_38 AC 913 ms
67,284 KB
testcase_39 AC 675 ms
51,892 KB
testcase_40 AC 714 ms
54,592 KB
testcase_41 AC 1,106 ms
75,932 KB
testcase_42 AC 768 ms
58,048 KB
testcase_43 AC 877 ms
63,028 KB
testcase_44 AC 506 ms
80,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N, Q = map(int, readline().split())
event = []
S = 0
coef = 0
for _ in range(N):
    x, w = map(int, readline().split())
    event.append((x, w, 1))
    S += x * w
    coef -= w

X = map(int, read().split())
for i, x in enumerate(X):
    event.append((x, i, 2))

event.sort()

answer = [0] * Q
X = 0

for x, w, t in event:
    if t == 1:
        S += (x - X) * coef
        coef += 2 * w
        X = x
    else:
        i = w
        answer[i] = coef * (x - X) + S

print('\n'.join(map(str, answer)))
0