結果

問題 No.1012 荷物収集
ユーザー ngtkanangtkana
提出日時 2020-04-08 23:16:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 212,560 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-07-19 05:49:13
合計ジャッジ時間 8,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 43 ms
7,040 KB
testcase_05 AC 49 ms
7,036 KB
testcase_06 AC 42 ms
7,168 KB
testcase_07 AC 42 ms
7,036 KB
testcase_08 AC 41 ms
7,164 KB
testcase_09 AC 44 ms
7,164 KB
testcase_10 AC 41 ms
7,036 KB
testcase_11 AC 41 ms
7,032 KB
testcase_12 AC 43 ms
7,032 KB
testcase_13 AC 43 ms
7,040 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 40 ms
5,376 KB
testcase_25 AC 52 ms
6,360 KB
testcase_26 AC 30 ms
5,944 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 50 ms
6,736 KB
testcase_29 AC 33 ms
6,872 KB
testcase_30 AC 52 ms
7,020 KB
testcase_31 AC 18 ms
5,376 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 28 ms
5,376 KB
testcase_34 AC 27 ms
5,376 KB
testcase_35 AC 43 ms
6,204 KB
testcase_36 AC 24 ms
5,376 KB
testcase_37 AC 31 ms
6,748 KB
testcase_38 AC 40 ms
5,516 KB
testcase_39 AC 19 ms
5,376 KB
testcase_40 AC 23 ms
5,376 KB
testcase_41 AC 57 ms
6,840 KB
testcase_42 AC 28 ms
5,376 KB
testcase_43 AC 37 ms
5,764 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
using lint=long long;
using ld=long double;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,q;std::cin>>n>>q;
    std::vector<std::pair<lint,lint>>xw(n);
    for(auto&&p:xw)std::cin>>p.first>>p.second;
    xw.emplace_back(1'000'000'000,0);
    n++;
    std::sort(ALL(xw));
    std::vector<lint>x(n),w(n+1),dp(n);
    for(lint i=0;i<n;i++){
        std::tie(x.at(i),w.at(i+1))=xw.at(i);
    }
    std::partial_sum(ALL(w),w.begin());
    for(lint i=1;i<n;i++){
        dp.at(0)+=(x.at(i)-x.at(0))*(w.at(i+1)-w.at(i));
    }
    for(lint i=1;i<n;i++){
        dp.at(i)+=dp.at(i-1)+(2*w.at(i)-w.at(n))*(x.at(i)-x.at(i-1));
    }
    while(q--){
        lint X;std::cin>>X;
        lint i=std::lower_bound(ALL(x),X)-x.begin();
        std::cout<<dp.at(i)+(w.at(n)-2*w.at(i))*(x.at(i)-X)<<'\n';
    }
}
0