結果

問題 No.1012 荷物収集
ユーザー otamay6otamay6
提出日時 2019-11-06 08:27:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,266 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 174,336 KB
実行使用メモリ 12,264 KB
最終ジャッジ日時 2024-10-14 12:35:52
合計ジャッジ時間 10,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 218 ms
12,156 KB
testcase_05 AC 217 ms
12,256 KB
testcase_06 AC 216 ms
12,132 KB
testcase_07 AC 213 ms
12,260 KB
testcase_08 AC 213 ms
12,260 KB
testcase_09 AC 223 ms
12,260 KB
testcase_10 AC 222 ms
12,260 KB
testcase_11 AC 214 ms
12,136 KB
testcase_12 AC 216 ms
12,264 KB
testcase_13 AC 227 ms
12,264 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<unistd.h>
#define REP(i,n) for(int i=0,i##_len=(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
using namespace std;
typedef long long ll;

vector<ll> ans2(ll N,ll Q,vector<pair<ll,ll>> A,vector<ll> X){
    vector<ll> x(N+1,0),w(N+1,0),Sxw(N+2,0),Sw(N+2,0);
    REP(i,N){
        x[i+1]=A[i].first;
        w[i+1]=A[i].second;
    }
    REP(i,N+1){
        Sxw[i+1]=Sxw[i]+x[i]*w[i];
        Sw[i+1]=Sw[i]+w[i];
    }
    int k=0;
    vector<ll> res;
    REP(q,Q){
        while(k<=N&&X[q]>=x[k]){
            k++;
        }
        res.push_back(Sxw[N+1]-2*Sxw[k]+X[q]*(2*Sw[k]-Sw[N+1]));
    }
    return res;
}

int main(){
    ll N,Q;cin>>N>>Q;
    assert(1<=N&&N<=100000);
    assert(1<=Q&&Q<=100000);
    vector<pair<ll,ll>> A(N);
    REP(i,N){
        cin>>A[i].first>>A[i].second;
        assert(1<=A[i].first&&A[i].first<=1000000000);
        assert(1<=A[i].second&&A[i].second<=10000);
        if(i>0) assert(A[i].first>A[i-1].first);
    }
    vector<ll> X(Q);
    REP(i,Q){
        cin>>X[i];
        assert(1<=X[i]&&X[i]<=1000000000);
        if(i>0) assert(X[i]>X[i-1]);
    }

    vector<ll> ans=ans2(N,Q,A,X);
    REP(i,Q){
        cout<<ans[i]<<endl;
    }
}
0