結果

問題 No.953 席
ユーザー pekempeypekempey
提出日時 2019-12-16 07:06:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 2,474 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 185,724 KB
実行使用メモリ 14,308 KB
最終ジャッジ日時 2024-07-02 19:13:19
合計ジャッジ時間 7,644 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 124 ms
7,604 KB
testcase_03 AC 123 ms
7,312 KB
testcase_04 AC 125 ms
7,516 KB
testcase_05 AC 118 ms
7,048 KB
testcase_06 AC 126 ms
7,736 KB
testcase_07 AC 202 ms
13,684 KB
testcase_08 AC 189 ms
12,244 KB
testcase_09 AC 180 ms
14,308 KB
testcase_10 AC 54 ms
6,856 KB
testcase_11 AC 142 ms
10,332 KB
testcase_12 AC 152 ms
10,844 KB
testcase_13 AC 177 ms
12,076 KB
testcase_14 AC 141 ms
10,068 KB
testcase_15 AC 138 ms
9,268 KB
testcase_16 AC 142 ms
9,872 KB
testcase_17 AC 167 ms
10,372 KB
testcase_18 AC 154 ms
9,544 KB
testcase_19 AC 191 ms
11,856 KB
testcase_20 AC 156 ms
10,028 KB
testcase_21 AC 132 ms
7,804 KB
testcase_22 AC 151 ms
10,920 KB
testcase_23 AC 131 ms
8,468 KB
testcase_24 AC 131 ms
8,592 KB
testcase_25 AC 190 ms
12,272 KB
testcase_26 AC 115 ms
7,028 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()

template<class T>
using minheap = priority_queue<T, vector<T>, greater<T>>;

int main() {
  int N, K1, K2;
  cin >> N >> K1 >> K2;
  int Q; cin >> Q;
  set<int> can0, can1;
  const int inf = 1e9;
  can0.insert(-inf);
  can0.insert(inf);
  can1.insert(-inf);
  can1.insert(inf);
  for (int i = 1; i <= N; i++) {
    can0.insert(i);
    can1.insert(i);
  }
  minheap<pair<ll, int>> in, out;
  vector<ll> A(Q), B(Q);
  for (int i = 0; i < Q; i++) {
    cin >> A[i] >> B[i];
    in.emplace(A[i], i);
  }
  vector<int> ans(Q, -1);
  auto ins = [&](int k, int id) {
    ans[id] = k;
    can0.erase(k - 1);
    can0.erase(k);
    can0.erase(k + 1);
    can1.erase(k);
  };
  auto del = [&](int k) {
    can1.insert(k);
    for (int i = max(1, k - 1); i <= min(N, k + 1); i++) {
      if ((i - 1 == 0 || can1.count(i - 1)) && can1.count(i) && (i + 1 == N + 1 || can1.count(i + 1))) {
        can0.insert(i);
      }
    }
  };
  ll now = 0;
  while (!in.empty()) {
    now = max(now, in.top().first);
    while (!out.empty() && out.top().first <= now) {
      del(ans[out.top().second]);
      out.pop();
    }
    if (can1.size() == 2) {
      now = out.top().first;
    }
    while (!out.empty() && out.top().first <= now) {
      del(ans[out.top().second]);
      out.pop();
    }
    int k = in.top().second;
    in.pop();
    out.emplace(now + B[k], k);
    if (K1 < K2) {
      int l = *prev(can0.upper_bound(K1));
      int r = *can0.lower_bound(K2);
      if (l == -inf && r == inf) {
        int ll = *prev(can1.upper_bound(K1));
        int rr = *can1.lower_bound(K2);
        if (K1 - ll <= rr - K2) {
          ins(ll, k);
        } else {
          ins(rr, k);
        }
      } else if (K1 - l <= r - K2) {
        ins(l, k);
      } else {
        ins(r, k);
      }
    } else {
      int l = *prev(can0.upper_bound(K2));
      int r = *can0.lower_bound(K1);
      if (l == -inf && r == inf) {
        int ll = *prev(can1.upper_bound(K2));
        int rr = *can1.lower_bound(K1);
        if (K2 - ll >= rr - K1) {
          ins(rr, k);
        } else {
          ins(ll, k);
        }
      } else if (K2 - l >= r - K1) {
        ins(r, k);
      } else {
        ins(l, k);
      }
    }
  }
  for (int i = 0; i < Q; i++) {
    cout << ans[i] << '\n';
  }
}
0