結果

問題 No.1012 荷物収集
ユーザー otamay6otamay6
提出日時 2019-11-27 19:19:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 183,592 KB
実行使用メモリ 17,072 KB
最終ジャッジ日時 2024-10-14 12:38:31
合計ジャッジ時間 11,841 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 2 ms
5,248 KB
testcase_04 AC 289 ms
16,944 KB
testcase_05 AC 292 ms
16,944 KB
testcase_06 AC 289 ms
16,944 KB
testcase_07 AC 300 ms
17,072 KB
testcase_08 AC 293 ms
16,948 KB
testcase_09 AC 292 ms
16,944 KB
testcase_10 AC 298 ms
16,948 KB
testcase_11 AC 290 ms
16,948 KB
testcase_12 AC 292 ms
16,952 KB
testcase_13 AC 295 ms
16,948 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 222 ms
12,196 KB
testcase_25 AC 285 ms
14,700 KB
testcase_26 AC 127 ms
9,856 KB
testcase_27 AC 27 ms
5,248 KB
testcase_28 AC 269 ms
14,484 KB
testcase_29 AC 129 ms
11,648 KB
testcase_30 AC 273 ms
14,876 KB
testcase_31 AC 146 ms
8,712 KB
testcase_32 AC 98 ms
7,296 KB
testcase_33 AC 171 ms
9,752 KB
testcase_34 AC 194 ms
10,280 KB
testcase_35 AC 226 ms
12,544 KB
testcase_36 AC 188 ms
9,860 KB
testcase_37 AC 119 ms
10,880 KB
testcase_38 AC 220 ms
12,476 KB
testcase_39 AC 91 ms
7,424 KB
testcase_40 AC 125 ms
8,320 KB
testcase_41 AC 307 ms
15,720 KB
testcase_42 AC 162 ms
9,344 KB
testcase_43 AC 212 ms
11,264 KB
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);
    sort(All(A));
    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];
    }
    vector<ll> res;
    REP(q,Q){
        int k=lower_bound(All(A),pair<ll,ll>(X[q],0))-A.begin()+1;
        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);
    set<int> appeared;
    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);
        assert(!appeared.count(A[i].first));
        appeared.insert(A[i].first);
    }
    appeared.clear();
    vector<ll> X(Q);
    REP(i,Q){
        cin>>X[i];
        assert(1<=X[i]&&X[i]<=1000000000);
        assert(!appeared.count(X[i]));
        appeared.insert(X[i]);
    }

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