結果

問題 No.1012 荷物収集
ユーザー prd_xxxprd_xxx
提出日時 2020-03-20 23:05:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,640 KB
最終ジャッジ日時 2024-05-09 00:18:54
合計ジャッジ時間 18,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 33 ms
11,008 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 498 ms
53,484 KB
testcase_05 AC 525 ms
53,640 KB
testcase_06 AC 490 ms
53,512 KB
testcase_07 AC 492 ms
53,488 KB
testcase_08 AC 501 ms
53,476 KB
testcase_09 AC 496 ms
53,484 KB
testcase_10 AC 484 ms
52,828 KB
testcase_11 AC 496 ms
52,980 KB
testcase_12 AC 490 ms
53,480 KB
testcase_13 AC 502 ms
53,384 KB
testcase_14 AC 35 ms
11,008 KB
testcase_15 AC 36 ms
11,008 KB
testcase_16 AC 35 ms
11,136 KB
testcase_17 AC 37 ms
11,008 KB
testcase_18 AC 36 ms
11,008 KB
testcase_19 AC 36 ms
11,008 KB
testcase_20 AC 36 ms
11,008 KB
testcase_21 AC 36 ms
11,136 KB
testcase_22 AC 36 ms
11,008 KB
testcase_23 AC 39 ms
11,008 KB
testcase_24 AC 541 ms
35,368 KB
testcase_25 AC 741 ms
44,628 KB
testcase_26 AC 434 ms
34,400 KB
testcase_27 AC 117 ms
16,624 KB
testcase_28 AC 739 ms
46,300 KB
testcase_29 AC 492 ms
41,464 KB
testcase_30 AC 764 ms
47,720 KB
testcase_31 AC 217 ms
19,384 KB
testcase_32 AC 230 ms
21,464 KB
testcase_33 AC 324 ms
24,720 KB
testcase_34 AC 338 ms
24,616 KB
testcase_35 AC 614 ms
41,268 KB
testcase_36 AC 278 ms
21,968 KB
testcase_37 AC 458 ms
38,444 KB
testcase_38 AC 575 ms
37,252 KB
testcase_39 AC 275 ms
24,312 KB
testcase_40 AC 311 ms
25,104 KB
testcase_41 AC 830 ms
49,036 KB
testcase_42 AC 384 ms
27,824 KB
testcase_43 AC 539 ms
36,860 KB
testcase_44 AC 34 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,Q = map(int,input().split())
XW = [tuple(map(int,input().split())) for i in range(N)]
XW.sort(key=lambda x:x[0])
X = list(map(int,input().split()))

lc = [0]
wc = [0]
for (px,pw),(x,_) in zip(XW,XW[1:]):
    wc.append(wc[-1] + pw)
    lc.append(lc[-1] + wc[-1] * (x-px))
wc.append(wc[-1] + XW[-1][1])
xs = [x for x,_ in XW]

XW.reverse()
rc = [0]
w = 0
for (px,pw),(x,_) in zip(XW,XW[1:]):
    w += pw
    rc.append(rc[-1] + w * (px-x))
rc.reverse()

from bisect import bisect
ans = []
for x in X:
    i = bisect(xs, x)
    if i and xs[i-1] == x:
        ans.append(lc[i-1] + rc[i-1])
        continue
    if i==0:
        ans.append(rc[0] + wc[-1]*(xs[0]-x))
        continue
    if i==N:
        ans.append(lc[-1] + wc[-1]*(x-xs[-1]))
        continue
    l,r = x-xs[i-1], xs[i]-x
    v = lc[i-1] + rc[i]
    v += l*wc[i] + r*(wc[-1] - wc[i])
    ans.append(v)
print(*ans, sep='\n')
0