結果

問題 No.1012 荷物収集
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-20 23:20:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,139 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 187,228 KB
最終ジャッジ日時 2024-12-15 15:47:14
合計ジャッジ時間 78,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
57,984 KB
testcase_01 AC 33 ms
155,356 KB
testcase_02 AC 35 ms
59,300 KB
testcase_03 AC 34 ms
155,964 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 39 ms
64,384 KB
testcase_15 AC 54 ms
157,440 KB
testcase_16 AC 48 ms
66,944 KB
testcase_17 AC 50 ms
163,092 KB
testcase_18 AC 46 ms
69,504 KB
testcase_19 AC 39 ms
148,252 KB
testcase_20 AC 39 ms
63,872 KB
testcase_21 AC 42 ms
157,788 KB
testcase_22 AC 46 ms
67,712 KB
testcase_23 AC 46 ms
159,256 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 247 ms
173,076 KB
testcase_28 TLE -
testcase_29 AC 828 ms
187,228 KB
testcase_30 TLE -
testcase_31 AC 467 ms
170,496 KB
testcase_32 AC 1,615 ms
88,320 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 848 ms
88,280 KB
testcase_37 AC 1,141 ms
91,156 KB
testcase_38 TLE -
testcase_39 AC 1,882 ms
83,612 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 33 ms
142,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    n, q = map(int, input().split())
    L = []
    xs = []
    for i in range(n):
        x, w = map(int, input().split())
        L.append([x, w])
        xs.append(x)
    X = list(map(int, input().split()))
    L.sort()
    xs.sort()

    Wl = [0]*n
    Wr = [0]*n
    wsl = [0]*n
    wsr = [0]*n
    for i in range(n):
        if i == 0:
            wsl[i] = L[i][1]
        else:
            wsl[i] = wsl[i-1] + L[i][1]
            Wl[i] = wsl[i-1]*(xs[i]-xs[i-1]) + Wl[i-1]

    for i in reversed(range(n)):
        if i == n-1:
            wsr[i] = L[i][1]
        else:
            j = n-1-i
            wsr[i] = wsr[i+1] + L[i][1]
            Wr[i] = wsr[i+1]*(xs[i+1]-xs[i]) + Wr[i+1]
    #print(Wl)
    #print(Wr)
    import bisect
    for x in X:
        if x < min(xs):
            ans = wsr[0]*(xs[0]-x)+Wr[0]
        elif x >= max(xs):
            ans = wsl[-1]*(x-xs[-1])+Wl[-1]
        else:
            id = bisect.bisect_right(xs, x)
            ans = wsl[id-1]*(x-xs[id-1])+Wl[id-1]+ wsr[id]*(xs[id]-x)+Wr[id]
        print(ans)

if __name__ == '__main__':
    main()
0