結果

問題 No.1012 荷物収集
ユーザー pekempeypekempey
提出日時 2020-03-20 21:36:02
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 179,376 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-12-15 04:37:00
合計ジャッジ時間 7,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 122 ms
11,136 KB
testcase_05 AC 122 ms
11,268 KB
testcase_06 AC 122 ms
12,544 KB
testcase_07 AC 121 ms
12,160 KB
testcase_08 AC 119 ms
11,776 KB
testcase_09 AC 123 ms
12,288 KB
testcase_10 AC 121 ms
10,756 KB
testcase_11 AC 122 ms
10,880 KB
testcase_12 AC 119 ms
11,136 KB
testcase_13 AC 120 ms
10,752 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 86 ms
6,964 KB
testcase_25 AC 110 ms
11,472 KB
testcase_26 AC 63 ms
6,820 KB
testcase_27 AC 16 ms
6,820 KB
testcase_28 AC 108 ms
9,468 KB
testcase_29 AC 71 ms
7,012 KB
testcase_30 AC 111 ms
9,844 KB
testcase_31 AC 42 ms
6,820 KB
testcase_32 AC 38 ms
6,816 KB
testcase_33 AC 55 ms
6,820 KB
testcase_34 AC 58 ms
7,192 KB
testcase_35 AC 96 ms
10,360 KB
testcase_36 AC 52 ms
7,056 KB
testcase_37 AC 69 ms
6,908 KB
testcase_38 AC 85 ms
7,332 KB
testcase_39 AC 40 ms
6,816 KB
testcase_40 AC 48 ms
6,816 KB
testcase_41 AC 120 ms
10,816 KB
testcase_42 AC 58 ms
6,944 KB
testcase_43 AC 81 ms
7,296 KB
testcase_44 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define range(a) a.begin(), a.end()

int main() {
  int N, Q; cin >> N >> Q;
  vector<ll> X(N), W(N);
  rep(i, N) cin >> X[i] >> W[i];
  vector<ll> Y(Q);
  const ll INF = 1e9;
  rep(i, Q) cin >> Y[i];
  Y.push_back(0);
  Y.push_back(INF);
  vector<pair<ll, int>> events;
  rep(i, N) events.emplace_back(X[i], i);
  rep(i, Q + 2) events.emplace_back(Y[i], i + N);
  sort(range(events));
  ll pos = 0;
  ll cost = 0;
  ll L = 0;
  ll R = 0;
  rep(i, N) {
    cost += X[i] * W[i];
    R += W[i];
  }
  vector<ll> ans(Q + 2);
  for (auto p : events) {
    cost += L * (p.first - pos);
    cost -= R * (p.first - pos);
    pos = p.first;
    if (p.second < N) {
      L += W[p.second];
      R -= W[p.second];
    } else {
      ans[p.second - N] = cost;
    }
  }
  rep(i, Q) cout << ans[i] << '\n';
}
0