結果

問題 No.1012 荷物収集
ユーザー MayimgMayimg
提出日時 2020-07-07 09:48:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,097 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 213,020 KB
実行使用メモリ 18,184 KB
最終ジャッジ日時 2024-09-25 08:02:48
合計ジャッジ時間 8,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,812 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 73 ms
18,032 KB
testcase_05 AC 84 ms
18,024 KB
testcase_06 AC 77 ms
18,020 KB
testcase_07 AC 72 ms
18,024 KB
testcase_08 AC 72 ms
18,088 KB
testcase_09 AC 72 ms
18,024 KB
testcase_10 AC 72 ms
18,020 KB
testcase_11 AC 72 ms
18,020 KB
testcase_12 AC 70 ms
18,184 KB
testcase_13 AC 83 ms
18,104 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 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 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 64 ms
12,520 KB
testcase_25 AC 91 ms
15,464 KB
testcase_26 AC 46 ms
9,704 KB
testcase_27 AC 12 ms
5,376 KB
testcase_28 AC 88 ms
15,080 KB
testcase_29 AC 50 ms
10,348 KB
testcase_30 AC 90 ms
15,596 KB
testcase_31 AC 35 ms
8,552 KB
testcase_32 AC 28 ms
7,400 KB
testcase_33 AC 49 ms
9,704 KB
testcase_34 AC 53 ms
10,344 KB
testcase_35 AC 83 ms
13,540 KB
testcase_36 AC 46 ms
9,832 KB
testcase_37 AC 47 ms
9,884 KB
testcase_38 AC 71 ms
12,904 KB
testcase_39 AC 31 ms
7,652 KB
testcase_40 AC 36 ms
8,680 KB
testcase_41 AC 101 ms
16,612 KB
testcase_42 AC 45 ms
9,572 KB
testcase_43 AC 61 ms
12,008 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  int n, q;
  cin >> n >> q;
  vector<vector<int>> v;
  for (int i = 0; i < n; i++) {
    int x, w;
    cin >> x >> w;
    v.push_back({x, w, 0});
  }
  v.push_back({0, 0, 0});
  v.push_back({(int) 1e9 + 1, 0, 0});
  for (int i = 0; i < q; i++) {
    int x;
    cin >> x;
    v.push_back({x, i, 1});
  }
  sort(v.begin(), v.end());
  vector<long long> pref((int) v.size());
  vector<long long> ans(q);
  long long w_tot = 0;
  for (int i = 1; i < (int) v.size(); i++) {
    pref[i] = pref[i - 1] + w_tot * (v[i][0] - v[i - 1][0]);
    if (v[i][2] == 0) {
      w_tot += v[i][1];
    } else {
      ans[v[i][1]] += pref[i];
    }
  }
  vector<long long> suff((int) v.size());
  w_tot = 0;
  for (int i = (int) v.size() - 2; i >= 1; i--) {
    suff[i] = suff[i + 1] + w_tot * (v[i + 1][0] - v[i][0]);
    if (v[i][2] == 0) {
      w_tot += v[i][1];
    } else {
      ans[v[i][1]] += suff[i];
    }
  }
  for (auto& p : ans) {
    cout << p << '\n';
  }
  return 0;
}
0