結果

問題 No.1012 荷物収集
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-20 21:50:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 120,608 KB
最終ジャッジ日時 2024-12-15 05:25:39
合計ジャッジ時間 10,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,216 KB
testcase_01 AC 35 ms
52,544 KB
testcase_02 AC 33 ms
52,596 KB
testcase_03 AC 33 ms
53,360 KB
testcase_04 AC 208 ms
120,356 KB
testcase_05 AC 211 ms
120,484 KB
testcase_06 AC 216 ms
120,604 KB
testcase_07 AC 207 ms
120,488 KB
testcase_08 AC 204 ms
120,352 KB
testcase_09 AC 217 ms
120,352 KB
testcase_10 AC 209 ms
120,484 KB
testcase_11 AC 205 ms
120,604 KB
testcase_12 AC 211 ms
120,608 KB
testcase_13 AC 210 ms
120,352 KB
testcase_14 AC 37 ms
53,888 KB
testcase_15 AC 48 ms
63,232 KB
testcase_16 AC 39 ms
54,144 KB
testcase_17 AC 51 ms
63,104 KB
testcase_18 AC 43 ms
59,904 KB
testcase_19 AC 41 ms
53,888 KB
testcase_20 AC 44 ms
53,760 KB
testcase_21 AC 40 ms
54,400 KB
testcase_22 AC 40 ms
54,144 KB
testcase_23 AC 38 ms
53,916 KB
testcase_24 AC 300 ms
102,144 KB
testcase_25 AC 373 ms
108,340 KB
testcase_26 AC 220 ms
88,704 KB
testcase_27 AC 102 ms
78,080 KB
testcase_28 AC 356 ms
101,316 KB
testcase_29 AC 245 ms
88,704 KB
testcase_30 AC 397 ms
112,928 KB
testcase_31 AC 176 ms
96,252 KB
testcase_32 AC 158 ms
88,960 KB
testcase_33 AC 223 ms
100,608 KB
testcase_34 AC 222 ms
103,808 KB
testcase_35 AC 346 ms
107,060 KB
testcase_36 AC 223 ms
106,372 KB
testcase_37 AC 227 ms
89,132 KB
testcase_38 AC 310 ms
97,516 KB
testcase_39 AC 162 ms
85,120 KB
testcase_40 AC 181 ms
85,888 KB
testcase_41 AC 444 ms
119,500 KB
testcase_42 AC 220 ms
96,384 KB
testcase_43 AC 281 ms
102,016 KB
testcase_44 AC 34 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Qn = map(int, input().split()) 
X = []
for _ in range(N):
    x, w = map(int, input().split())
    X.append((x, w, 0))
Q = list(map(int, input().split()))
for i, x in enumerate(Q):
    X.append((x, i, 1))
X.sort(key=lambda x:x[0])

rs1 = [0] * Qn
wsum = bx = ss=0
for x, d, t in X:
    if t:
        ss += (x-bx)*wsum
        rs1[d] = ss
    else:
        ss += (x-bx)*wsum
        wsum += d
    bx = x


rs2 = [0] * Qn
wsum = bx = ss=0
for x, d, t in X[::-1]:
    if t:
        ss += -(x-bx)*wsum
        rs2[d] = ss
    else:
        ss += -(x-bx)*wsum
        wsum += d
    bx = x

#print(rs1, rs2)
for i in range(Qn):
    print(rs1[i]+rs2[i])
0