結果

問題 No.1012 荷物収集
ユーザー stngstng
提出日時 2022-08-17 23:03:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 115,388 KB
最終ジャッジ日時 2024-10-05 05:14:32
合計ジャッジ時間 14,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,704 KB
testcase_01 AC 33 ms
52,696 KB
testcase_02 AC 33 ms
53,064 KB
testcase_03 AC 35 ms
52,884 KB
testcase_04 AC 245 ms
114,980 KB
testcase_05 AC 247 ms
115,004 KB
testcase_06 AC 243 ms
115,072 KB
testcase_07 AC 255 ms
115,256 KB
testcase_08 AC 256 ms
115,252 KB
testcase_09 AC 252 ms
115,256 KB
testcase_10 AC 244 ms
115,376 KB
testcase_11 AC 250 ms
115,388 KB
testcase_12 AC 248 ms
115,372 KB
testcase_13 AC 254 ms
115,128 KB
testcase_14 AC 46 ms
61,572 KB
testcase_15 AC 56 ms
68,792 KB
testcase_16 AC 49 ms
64,696 KB
testcase_17 AC 57 ms
68,724 KB
testcase_18 AC 57 ms
66,720 KB
testcase_19 AC 47 ms
60,660 KB
testcase_20 AC 44 ms
56,208 KB
testcase_21 AC 52 ms
63,316 KB
testcase_22 AC 53 ms
65,672 KB
testcase_23 AC 47 ms
63,388 KB
testcase_24 AC 490 ms
104,008 KB
testcase_25 AC 614 ms
104,376 KB
testcase_26 AC 356 ms
98,084 KB
testcase_27 AC 153 ms
80,596 KB
testcase_28 AC 629 ms
110,692 KB
testcase_29 AC 383 ms
99,136 KB
testcase_30 AC 600 ms
106,512 KB
testcase_31 AC 304 ms
94,404 KB
testcase_32 AC 248 ms
86,000 KB
testcase_33 AC 368 ms
96,168 KB
testcase_34 AC 387 ms
90,000 KB
testcase_35 AC 524 ms
100,880 KB
testcase_36 AC 382 ms
97,080 KB
testcase_37 AC 352 ms
100,176 KB
testcase_38 AC 509 ms
100,404 KB
testcase_39 AC 267 ms
87,984 KB
testcase_40 AC 314 ms
88,968 KB
testcase_41 AC 667 ms
109,016 KB
testcase_42 AC 364 ms
93,176 KB
testcase_43 AC 454 ms
97,140 KB
testcase_44 AC 36 ms
53,032 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_left(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