結果

問題 No.1012 荷物収集
ユーザー face4face4
提出日時 2020-07-06 17:05:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 974 ms
コンパイル使用メモリ 81,136 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 17:15:51
合計ジャッジ時間 7,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 162 ms
6,940 KB
testcase_05 AC 158 ms
6,940 KB
testcase_06 AC 154 ms
6,940 KB
testcase_07 AC 168 ms
6,944 KB
testcase_08 AC 158 ms
6,940 KB
testcase_09 AC 158 ms
6,940 KB
testcase_10 AC 166 ms
6,940 KB
testcase_11 AC 152 ms
6,940 KB
testcase_12 AC 158 ms
6,940 KB
testcase_13 AC 156 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 127 ms
6,944 KB
testcase_25 AC 146 ms
6,944 KB
testcase_26 AC 54 ms
6,940 KB
testcase_27 AC 14 ms
6,940 KB
testcase_28 AC 138 ms
6,940 KB
testcase_29 AC 39 ms
6,944 KB
testcase_30 AC 135 ms
6,940 KB
testcase_31 AC 98 ms
6,940 KB
testcase_32 AC 57 ms
6,940 KB
testcase_33 AC 104 ms
6,940 KB
testcase_34 AC 118 ms
6,944 KB
testcase_35 AC 111 ms
6,944 KB
testcase_36 AC 120 ms
6,944 KB
testcase_37 AC 37 ms
6,940 KB
testcase_38 AC 126 ms
6,944 KB
testcase_39 AC 48 ms
6,944 KB
testcase_40 AC 66 ms
6,940 KB
testcase_41 AC 157 ms
6,944 KB
testcase_42 AC 81 ms
6,940 KB
testcase_43 AC 97 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;

typedef pair<int,int> pii;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, q;
    cin >> n >> q;
    vector<pii> vp;
    for(int i = 0; i < n; i++){
        int x, w;
        cin >> x >> w;
        vp.push_back({x,w});
    }
    sort(vp.begin(), vp.end());
    vector<pii> ev;
    ev = vp;
    for(int i = 1; i <= q; i++){
        int x;
        cin >> x;
        ev.push_back({x, -i});
    }
    sort(ev.begin(), ev.end());
    int st = ev[0].first;
    ll tmp = 0, l = 0, r = 0;
    for(int i = 0; i < n; i++){
        tmp += (ll)(vp[i].first-st)*vp[i].second;
        r += vp[i].second;
    }
    vector<ll> ans(q+1);
    for(pii p : ev){
        int x = p.first, y = p.second;
        ll diff = x-st;
        tmp += diff*l - diff*r;
        if(y < 0){
            ans[-y] = tmp;
        }else{
            l += y;
            r -= y;
        }
        st = x;
    }
    for(int i = 1; i <= q; i++) cout << ans[i] << endl;
    return 0;
}
0