結果

問題 No.1012 荷物収集
ユーザー prd_xxxprd_xxx
提出日時 2020-03-20 23:05:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 755 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,644 KB
最終ジャッジ日時 2024-12-15 08:17:11
合計ジャッジ時間 16,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 475 ms
53,512 KB
testcase_05 AC 477 ms
53,644 KB
testcase_06 AC 481 ms
53,480 KB
testcase_07 AC 476 ms
53,516 KB
testcase_08 AC 478 ms
53,484 KB
testcase_09 AC 473 ms
53,508 KB
testcase_10 AC 471 ms
52,852 KB
testcase_11 AC 474 ms
52,828 KB
testcase_12 AC 479 ms
53,480 KB
testcase_13 AC 483 ms
53,516 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 33 ms
11,136 KB
testcase_16 AC 32 ms
11,008 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 33 ms
11,008 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 31 ms
11,008 KB
testcase_21 AC 32 ms
11,136 KB
testcase_22 AC 33 ms
11,008 KB
testcase_23 AC 31 ms
11,008 KB
testcase_24 AC 465 ms
35,364 KB
testcase_25 AC 659 ms
44,796 KB
testcase_26 AC 380 ms
34,524 KB
testcase_27 AC 99 ms
16,624 KB
testcase_28 AC 653 ms
46,172 KB
testcase_29 AC 439 ms
41,460 KB
testcase_30 AC 692 ms
47,680 KB
testcase_31 AC 205 ms
19,380 KB
testcase_32 AC 207 ms
21,464 KB
testcase_33 AC 301 ms
24,716 KB
testcase_34 AC 311 ms
24,476 KB
testcase_35 AC 565 ms
41,396 KB
testcase_36 AC 270 ms
22,060 KB
testcase_37 AC 412 ms
38,440 KB
testcase_38 AC 506 ms
37,172 KB
testcase_39 AC 230 ms
24,312 KB
testcase_40 AC 264 ms
25,120 KB
testcase_41 AC 755 ms
48,992 KB
testcase_42 AC 333 ms
27,828 KB
testcase_43 AC 472 ms
36,844 KB
testcase_44 AC 30 ms
10,880 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