結果

問題 No.1012 荷物収集
ユーザー hirono999hirono999
提出日時 2020-03-21 02:50:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 176,020 KB
実行使用メモリ 7,144 KB
最終ジャッジ日時 2024-05-09 15:19:36
合計ジャッジ時間 7,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 44 ms
7,016 KB
testcase_05 AC 44 ms
7,144 KB
testcase_06 AC 44 ms
7,144 KB
testcase_07 AC 45 ms
7,144 KB
testcase_08 AC 45 ms
7,144 KB
testcase_09 AC 44 ms
7,140 KB
testcase_10 AC 45 ms
7,144 KB
testcase_11 AC 45 ms
7,144 KB
testcase_12 AC 44 ms
7,140 KB
testcase_13 AC 44 ms
7,144 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 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 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 42 ms
5,376 KB
testcase_25 AC 58 ms
6,376 KB
testcase_26 AC 33 ms
5,992 KB
testcase_27 AC 9 ms
5,376 KB
testcase_28 AC 56 ms
6,760 KB
testcase_29 AC 33 ms
7,016 KB
testcase_30 AC 58 ms
7,144 KB
testcase_31 AC 21 ms
5,376 KB
testcase_32 AC 19 ms
5,376 KB
testcase_33 AC 29 ms
5,376 KB
testcase_34 AC 30 ms
5,376 KB
testcase_35 AC 49 ms
6,376 KB
testcase_36 AC 26 ms
5,376 KB
testcase_37 AC 32 ms
6,756 KB
testcase_38 AC 45 ms
5,608 KB
testcase_39 AC 21 ms
5,376 KB
testcase_40 AC 24 ms
5,376 KB
testcase_41 AC 64 ms
7,016 KB
testcase_42 AC 29 ms
5,376 KB
testcase_43 AC 41 ms
5,740 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (ll i = 0; i < (n); ++i)
#define rep1(i, n) for (ll i = 1; i <= (n); ++i)
#define rrep(i, n) for (ll i = (n - 1); i >= 0; --i)
#define ALL(obj) (obj).begin(), (obj).end()
#define pb push_back
#define to_s to_string
#define len(v) (ll)v.size()
#define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end())
#define print(x) cout << (x) << '\n'
#define debug(x) cout << #x << ": " << (x) << '\n'
using namespace std;
using ll = long long;
typedef pair<ll, ll> P;
ll MOD = 1e9 + 7;
ll devc(ll x, ll y) { return 1 + (x - 1) / y; }

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(0);
    cout << fixed << setprecision(20);

    ll N, Q;
    cin >> N >> Q;
    vector<P> bag;
    rep(i,N){
        ll x, w;
        cin >> x >> w;
        bag.pb({x, w});
    }
    sort(ALL(bag));

    vector<ll> x(N), xs(N), ws(N);

    rep(i, N) x[i] = bag[i].first, xs[i] = bag[i].first * bag[i].second, ws[i] = bag[i].second;
    rep1(i, N - 1) xs[i] += xs[i - 1], ws[i] += ws[i - 1];

    rep(i,Q){
        ll X;
        cin >> X;
        ll p = upper_bound(ALL(x), X) - x.begin();
        ll tws = p == 0 ? 0 : ws[p - 1];
        ll txs = p == 0 ? 0 : xs[p - 1];
        print(2 * X * tws - X * ws[N - 1] + xs[N - 1] - 2 * txs);
    }

    return 0;
}
0