結果

問題 No.1012 荷物収集
ユーザー rxoxixyxdrxoxixyxd
提出日時 2020-03-21 00:30:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,732 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 177,672 KB
実行使用メモリ 14,484 KB
最終ジャッジ日時 2024-12-15 22:29:18
合計ジャッジ時間 10,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 250 ms
14,356 KB
testcase_05 AC 256 ms
14,360 KB
testcase_06 AC 250 ms
14,352 KB
testcase_07 AC 247 ms
14,484 KB
testcase_08 AC 242 ms
14,356 KB
testcase_09 AC 253 ms
14,352 KB
testcase_10 AC 247 ms
14,356 KB
testcase_11 AC 256 ms
14,352 KB
testcase_12 AC 253 ms
14,356 KB
testcase_13 AC 244 ms
14,360 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 4 ms
6,816 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 196 ms
9,196 KB
testcase_25 AC 251 ms
12,412 KB
testcase_26 AC 121 ms
11,272 KB
testcase_27 AC 26 ms
6,816 KB
testcase_28 AC 234 ms
13,084 KB
testcase_29 AC 120 ms
14,120 KB
testcase_30 AC 241 ms
14,344 KB
testcase_31 AC 114 ms
6,816 KB
testcase_32 AC 84 ms
6,816 KB
testcase_33 AC 139 ms
6,820 KB
testcase_34 AC 154 ms
6,816 KB
testcase_35 AC 209 ms
12,204 KB
testcase_36 AC 150 ms
6,816 KB
testcase_37 AC 113 ms
13,208 KB
testcase_38 AC 199 ms
10,072 KB
testcase_39 AC 85 ms
7,380 KB
testcase_40 AC 109 ms
6,912 KB
testcase_41 AC 285 ms
13,860 KB
testcase_42 AC 131 ms
7,660 KB
testcase_43 AC 174 ms
10,736 KB
testcase_44 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < n; ++i)
#define ALL(c) (c).begin(), (c).end()
#define SUM(x) std::accumulate(ALL(x), 0LL)
#define MIN(v) *std::min_element(v.begin(), v.end())
#define MAX(v) *std::max_element(v.begin(), v.end())
#define EXIST(v, x) (std::find(v.begin(), v.end(), x) != v.end())
using namespace std;

typedef long long ll;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
const int INF = 1e9;
const long long INFL = 1LL<<60;


int main()
{
  int n, q;
  cin >> n >> q;

  map<ll, ll> xw;
  rep(i, n) {
    ll x, w;
    cin >> x >> w;
    xw[x] += w;
  }

  int N = xw.size();

  vector<ll> x;
  vector<ll> w;
  for (auto& v : xw) {
    x.push_back(v.first);
    w.push_back(v.second);
  }

  vector<ll> lc(N, 0), lw(N, 0);
  vector<ll> rc(N, 0), rw(N, 0);
  rep(i, N) {
    lw[i] += w[i];
    if (i > 0) {
      lw[i] += lw[i-1];
      lc[i] = lc[i-1] + (x[i] - x[i-1]) * lw[i-1];
    }
  }
  for (int i = N-1; i >= 0; i--) {
    rw[i] += w[i];
    if (i < N-1) {
      rw[i] += rw[i+1];
      rc[i] = rc[i+1] + (x[i+1] - x[i]) * rw[i+1];
    }
  }

  rep(i, q) {
    ll ans = 0;
    ll X;
    cin >> X;
    auto itr = lower_bound(ALL(x), X);
    int idx = itr - x.begin();
    if (x[N-1] <= X) {
      ans = lc[N-1] + (X - x[N-1]) * lw[N-1];
    } else if (X <= x[0]) {
      ans = rc[0] + (x[0] - X) * rw[0];
    } else if (x[idx] == X) {
      ans = lc[idx] + rc[idx];
    } else {
      ans += lc[idx-1] + (X - x[idx-1]) * lw[idx-1];
      ans += rc[idx] + (x[idx] - X) * rw[idx];
    }
    cout << ans << endl;
  }

  return 0;
}
0