結果

問題 No.1012 荷物収集
ユーザー stngstng
提出日時 2022-08-17 23:03:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 117,056 KB
最終ジャッジ日時 2024-10-05 05:15:16
合計ジャッジ時間 17,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,820 KB
testcase_04 AC 302 ms
116,796 KB
testcase_05 AC 303 ms
116,652 KB
testcase_06 AC 302 ms
116,672 KB
testcase_07 AC 303 ms
116,796 KB
testcase_08 AC 303 ms
116,668 KB
testcase_09 AC 305 ms
116,660 KB
testcase_10 AC 302 ms
116,788 KB
testcase_11 AC 309 ms
117,056 KB
testcase_12 AC 303 ms
116,592 KB
testcase_13 AC 310 ms
116,836 KB
testcase_14 AC 54 ms
60,288 KB
testcase_15 AC 66 ms
65,536 KB
testcase_16 AC 60 ms
61,952 KB
testcase_17 AC 65 ms
65,024 KB
testcase_18 AC 65 ms
64,384 KB
testcase_19 AC 56 ms
60,656 KB
testcase_20 AC 54 ms
60,800 KB
testcase_21 AC 59 ms
61,824 KB
testcase_22 AC 60 ms
62,720 KB
testcase_23 AC 57 ms
61,184 KB
testcase_24 AC 566 ms
102,700 KB
testcase_25 AC 737 ms
104,260 KB
testcase_26 AC 427 ms
97,792 KB
testcase_27 AC 175 ms
80,768 KB
testcase_28 AC 711 ms
112,092 KB
testcase_29 AC 458 ms
99,436 KB
testcase_30 AC 739 ms
106,396 KB
testcase_31 AC 361 ms
94,016 KB
testcase_32 AC 293 ms
86,088 KB
testcase_33 AC 430 ms
96,300 KB
testcase_34 AC 461 ms
90,676 KB
testcase_35 AC 618 ms
100,628 KB
testcase_36 AC 442 ms
96,980 KB
testcase_37 AC 435 ms
100,096 KB
testcase_38 AC 602 ms
98,096 KB
testcase_39 AC 326 ms
88,036 KB
testcase_40 AC 352 ms
88,508 KB
testcase_41 AC 806 ms
109,084 KB
testcase_42 AC 420 ms
92,988 KB
testcase_43 AC 548 ms
98,164 KB
testcase_44 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,q = map(int,input().split())
xw = [[int(i) for i in input().split()] for j in range(n)]
x = [int(i) for i in input().split()]

xx = []
for i in range(q):
    xx.append([x[i],i])
xx.sort()

x.sort()
xw.sort()
pos = []
wei = []
for i in range(n):
    pos.append(xw[i][0])
    wei.append(xw[i][1])

rw = [0]*(n+1)
for i in range(n):
    rw[i+1] = rw[i]+wei[i]

ali = [0]*q

ans = 0
for i in range(n):
    ans += abs(x[0]-pos[i])*wei[i]
ali[xx[0][1]] = ans

for i in range(q-1):
    bidx = bisect.bisect_right(pos,x[i])
    aidx = bisect.bisect_right(pos,x[i+1])
    #print(bidx,aidx,rw)
    ans += (x[i+1]-x[i])*(rw[bidx]-rw[0])
    ans -= (x[i+1]-x[i])*(rw[n]-rw[aidx])
    for j in range(bidx,aidx):
        ans -= abs(x[i]-pos[j])*wei[j]
        ans += abs(x[i+1]-pos[j])*wei[j]
    #print(ans)
    ali[xx[i+1][1]] = ans

print(*ali,sep="\n")
0