結果

問題 No.1012 荷物収集
ユーザー pekempeypekempey
提出日時 2020-03-20 21:36:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 967 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 178,068 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-08 21:11:29
合計ジャッジ時間 7,713 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 117 ms
10,880 KB
testcase_05 AC 118 ms
10,876 KB
testcase_06 AC 117 ms
10,752 KB
testcase_07 AC 117 ms
10,748 KB
testcase_08 AC 119 ms
10,748 KB
testcase_09 AC 117 ms
10,748 KB
testcase_10 AC 120 ms
10,752 KB
testcase_11 AC 124 ms
10,876 KB
testcase_12 AC 118 ms
10,744 KB
testcase_13 AC 119 ms
10,752 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 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 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 83 ms
7,092 KB
testcase_25 AC 109 ms
10,440 KB
testcase_26 AC 65 ms
6,732 KB
testcase_27 AC 17 ms
5,376 KB
testcase_28 AC 108 ms
9,468 KB
testcase_29 AC 76 ms
7,136 KB
testcase_30 AC 113 ms
9,584 KB
testcase_31 AC 42 ms
6,008 KB
testcase_32 AC 36 ms
5,376 KB
testcase_33 AC 53 ms
6,176 KB
testcase_34 AC 59 ms
7,192 KB
testcase_35 AC 95 ms
9,712 KB
testcase_36 AC 52 ms
7,064 KB
testcase_37 AC 68 ms
6,904 KB
testcase_38 AC 82 ms
7,332 KB
testcase_39 AC 42 ms
5,376 KB
testcase_40 AC 47 ms
6,256 KB
testcase_41 AC 118 ms
10,552 KB
testcase_42 AC 56 ms
6,820 KB
testcase_43 AC 82 ms
7,292 KB
testcase_44 AC 1 ms
5,376 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