結果

問題 No.1012 荷物収集
ユーザー d9etd9et
提出日時 2020-03-20 22:29:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 362 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 123,652 KB
最終ジャッジ日時 2024-12-15 06:47:07
合計ジャッジ時間 11,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from itertools import accumulate
import bisect
n,q = map(int,input().split())
xw = [list(map(int,input().split())) for i in range(n)]
xw.append([0,0])
xw.append([10**9,0])
xw.sort()
acc = list(accumulate(list(zip(*xw))[1]))
ls = []
x = xw[0][0]
cost = 0
n += 2
for i in range(1,n):
  x1,w1 = xw[i]
  cost += (x1-x)*w1
ls.append((x,cost))
for i in range(1,n):
  pos,w = xw[i]
  x,cost = ls[-1]
  cost += acc[i-1]*(pos-x)
  cost -= (acc[n-1]-acc[i-1])*(pos-x)
  ls.append((pos,cost))
xls = list(zip(*xw))[0]
query = list(map(int,input().split()))
ans = []
for i in query:
  x = bisect.bisect_left(xls,i)
  x1,c1 = ls[x-1]
  x2,c2 = ls[x]
  dc = c2-c1
  print(c1+dc*(i-x1)//(x2-x1))
0