結果

問題 No.1012 荷物収集
ユーザー otamay6otamay6
提出日時 2019-11-27 20:03:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 1,372 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 185,084 KB
実行使用メモリ 17,076 KB
最終ジャッジ日時 2024-10-14 12:41:07
合計ジャッジ時間 12,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 320 ms
16,892 KB
testcase_05 AC 313 ms
16,948 KB
testcase_06 AC 310 ms
16,948 KB
testcase_07 AC 311 ms
16,948 KB
testcase_08 AC 314 ms
16,948 KB
testcase_09 AC 314 ms
16,948 KB
testcase_10 AC 312 ms
16,948 KB
testcase_11 AC 315 ms
17,076 KB
testcase_12 AC 312 ms
16,944 KB
testcase_13 AC 310 ms
16,944 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 233 ms
12,200 KB
testcase_25 AC 307 ms
14,696 KB
testcase_26 AC 138 ms
9,856 KB
testcase_27 AC 29 ms
5,248 KB
testcase_28 AC 293 ms
14,488 KB
testcase_29 AC 138 ms
11,648 KB
testcase_30 AC 292 ms
14,880 KB
testcase_31 AC 156 ms
8,716 KB
testcase_32 AC 102 ms
7,296 KB
testcase_33 AC 178 ms
9,868 KB
testcase_34 AC 202 ms
10,160 KB
testcase_35 AC 243 ms
12,544 KB
testcase_36 AC 201 ms
9,732 KB
testcase_37 AC 135 ms
10,880 KB
testcase_38 AC 242 ms
12,580 KB
testcase_39 AC 97 ms
7,424 KB
testcase_40 AC 124 ms
8,320 KB
testcase_41 AC 335 ms
15,716 KB
testcase_42 AC 158 ms
9,344 KB
testcase_43 AC 202 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(x),X[q])-x.begin();
        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