結果

問題 No.1012 荷物収集
ユーザー taklimonetaklimone
提出日時 2020-03-21 16:05:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,171 bytes
コンパイル時間 1,526 ms
コンパイル使用メモリ 175,828 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-02 06:39:52
合計ジャッジ時間 5,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 40 ms
7,808 KB
testcase_05 AC 39 ms
7,936 KB
testcase_06 AC 39 ms
7,936 KB
testcase_07 AC 39 ms
7,936 KB
testcase_08 AC 40 ms
7,936 KB
testcase_09 AC 39 ms
7,808 KB
testcase_10 AC 40 ms
7,936 KB
testcase_11 AC 38 ms
7,936 KB
testcase_12 AC 39 ms
7,936 KB
testcase_13 AC 40 ms
7,936 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
5,760 KB
testcase_25 AC 52 ms
7,040 KB
testcase_26 AC 28 ms
6,528 KB
testcase_27 AC 8 ms
5,376 KB
testcase_28 AC 52 ms
7,296 KB
testcase_29 AC 29 ms
7,680 KB
testcase_30 AC 50 ms
7,936 KB
testcase_31 WA -
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 27 ms
5,376 KB
testcase_34 AC 28 ms
5,376 KB
testcase_35 AC 44 ms
6,912 KB
testcase_36 WA -
testcase_37 AC 27 ms
7,296 KB
testcase_38 AC 42 ms
6,016 KB
testcase_39 AC 18 ms
5,376 KB
testcase_40 AC 22 ms
5,376 KB
testcase_41 AC 58 ms
7,680 KB
testcase_42 AC 27 ms
5,376 KB
testcase_43 AC 37 ms
6,400 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N, Q; cin >> N >> Q;
    vector<pair<long long, long long>> x(N + 1);
    for(int i=1; i<=N; ++i) cin >> x[i].first >> x[i].second;
    sort(begin(x), end(x));

    vector<long long> L(N + 1, 0), Lsum(N + 1, 0);
    for(int i=1; i<=N; ++i) Lsum[i] = Lsum[i - 1] + x[i].second;
    for(int i=2; i<=N; ++i) L[i] = L[i - 1] + Lsum[i - 1] * (x[i].first - x[i - 1].first);

    vector<long long> R(N + 2, 0), Rsum(N + 1, 0);
    for(int i=N; i>=1; --i) Rsum[i] = Rsum[i + 1] + x[i].second;
    for(int i=N-1; i>=1; --i) R[i] = R[i + 1] + Rsum[i + 1] * (x[i + 1].first - x[i].first);

    while(Q--) {
        long long X; cin >> X;
        int k = upper_bound(begin(x) + 1, end(x), pair<long long, long long>(X, 0)) - begin(x);
        if(k == 1) {
            cout << R[1] + Rsum[1] * (x[1].first - X) << '\n';
        } else if(k == N + 1) {
            cout << L[N] + Lsum[N] * (X - x[N].first) << '\n';
        } else {
            cout << L[k - 1] + Lsum[k - 1] * (X - x[k - 1].first) + R[k] + Rsum[k] * (x[k].first - X) << '\n';
        }
    }
}
0