結果

問題 No.1012 荷物収集
ユーザー ああいいああいい
提出日時 2022-02-19 18:53:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 107,048 KB
最終ジャッジ日時 2024-06-29 10:37:05
合計ジャッジ時間 10,927 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 32 ms
51,968 KB
testcase_04 AC 165 ms
106,560 KB
testcase_05 AC 169 ms
106,548 KB
testcase_06 AC 171 ms
106,536 KB
testcase_07 AC 172 ms
106,560 KB
testcase_08 AC 168 ms
106,544 KB
testcase_09 AC 168 ms
107,048 KB
testcase_10 AC 169 ms
106,432 KB
testcase_11 AC 173 ms
106,548 KB
testcase_12 AC 174 ms
106,808 KB
testcase_13 AC 179 ms
106,456 KB
testcase_14 AC 37 ms
53,632 KB
testcase_15 AC 43 ms
61,824 KB
testcase_16 AC 36 ms
54,144 KB
testcase_17 AC 41 ms
61,312 KB
testcase_18 AC 40 ms
59,392 KB
testcase_19 AC 36 ms
53,760 KB
testcase_20 AC 37 ms
54,400 KB
testcase_21 AC 38 ms
54,784 KB
testcase_22 AC 37 ms
54,656 KB
testcase_23 AC 35 ms
53,888 KB
testcase_24 AC 238 ms
92,928 KB
testcase_25 AC 295 ms
97,716 KB
testcase_26 AC 195 ms
82,620 KB
testcase_27 AC 103 ms
77,952 KB
testcase_28 AC 289 ms
93,492 KB
testcase_29 AC 205 ms
83,884 KB
testcase_30 AC 315 ms
99,756 KB
testcase_31 AC 169 ms
90,856 KB
testcase_32 AC 145 ms
83,328 KB
testcase_33 AC 186 ms
90,136 KB
testcase_34 AC 202 ms
92,288 KB
testcase_35 AC 252 ms
92,584 KB
testcase_36 AC 183 ms
99,008 KB
testcase_37 AC 195 ms
82,984 KB
testcase_38 AC 249 ms
90,532 KB
testcase_39 AC 150 ms
81,792 KB
testcase_40 AC 156 ms
83,184 KB
testcase_41 AC 315 ms
104,020 KB
testcase_42 AC 194 ms
89,216 KB
testcase_43 AC 228 ms
92,500 KB
testcase_44 AC 32 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
l = []
for _ in range(N):
    x,w = map(int,input().split())
    l.append((x,w))
l.sort(key = lambda x:x[0])
X = list(map(int,input().split()))
X = [(X[i],i) for i in range(Q)]
ans = [0] * Q
X.sort(key = lambda s:s[0])
hidari = [0] * (N+1)
migi = [0] * (N+1)
for i in range(N):
    hidari[i+1] = hidari[i] + l[i][1]
for i in range(N-1,-1,-1):
    migi[i] = migi[i+1] + l[i][1]
a = 0
x = X[0][0]
index = X[0][1]
for i in range(N):
    s,w = l[i]
    a += abs(s-x) * w
ans[index] = a
left = 0
now = x
for i in range(1,Q):
    x,index = X[i]
    while left < N and l[left][0] <= now:
        left += 1
    delta = x - now
    a += delta * hidari[left]
    right = left
    while right < N and l[right][0] <= x:
        a -= (l[right][0] - now) * l[right][1]
        a += (x - l[right][0]) * l[right][1]
        right += 1
    a -= delta * migi[right]
    ans[index] = a
    now = x
print(*ans,sep="\n")
0