結果

問題 No.953 席
ユーザー 👑 hitonanodehitonanode
提出日時 2019-12-16 00:54:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,983 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 189,644 KB
実行使用メモリ 30,528 KB
最終ジャッジ日時 2023-09-15 15:59:29
合計ジャッジ時間 9,161 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 178 ms
26,128 KB
testcase_03 AC 164 ms
25,756 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 318 ms
29,052 KB
testcase_09 AC 260 ms
22,808 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 295 ms
28,968 KB
testcase_13 AC 320 ms
30,292 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 271 ms
28,024 KB
testcase_17 AC 195 ms
26,108 KB
testcase_18 AC 183 ms
26,080 KB
testcase_19 WA -
testcase_20 AC 182 ms
25,728 KB
testcase_21 AC 153 ms
25,796 KB
testcase_22 AC 270 ms
29,036 KB
testcase_23 WA -
testcase_24 AC 205 ms
26,896 KB
testcase_25 AC 325 ms
30,528 KB
testcase_26 AC 119 ms
25,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define SZ(x) ((lint)(x).size())
#define POW2(n) (1LL << (n))
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template<typename T> void ndarray(vector<T> &vec, int len) { vec.resize(len); }
template<typename T, typename... Args> void ndarray(vector<T> &vec, int len, Args... args) { vec.resize(len); for (auto &v : vec) ndarray(v, args...); }
template<typename T> bool mmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; }
template<typename T> bool mmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }
template<typename T1, typename T2> pair<T1, T2> operator+(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first + r.first, l.second + r.second); }
template<typename T1, typename T2> pair<T1, T2> operator-(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first - r.first, l.second - r.second); }
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }
///// This part below is only for debug, not used /////
template<typename T> ostream &operator<<(ostream &os, const vector<T> &vec){ os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T> ostream &operator<<(ostream &os, const deque<T> &vec){ os << "deq["; for (auto v : vec) os << v << ","; os << "]"; return os; }
template<typename T> ostream &operator<<(ostream &os, const set<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const unordered_set<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const multiset<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T> ostream &operator<<(ostream &os, const unordered_multiset<T> &vec){ os << "{"; for (auto v : vec) os << v << ","; os << "}"; return os; }
template<typename T1, typename T2> ostream &operator<<(ostream &os, const pair<T1, T2> &pa){ os << "(" << pa.first << "," << pa.second << ")"; return os; }
template<typename TK, typename TV> ostream &operator<<(ostream &os, const map<TK, TV> &mp){ os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; }
template<typename TK, typename TV> ostream &operator<<(ostream &os, const unordered_map<TK, TV> &mp){ os << "{"; for (auto v : mp) os << v.first << "=>" << v.second << ","; os << "}"; return os; }
#define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl;
///// END /////

int main()
{
    int N, K, K2;
    cin >> N >> K >> K2;
    vector<int> yusen(N + 2);

    int i = K, j = K + 1, pr = 0;
    while (true) {
        if (i <= 0 and j > N) break;
        if (i > 0) yusen[i--] = pr++;
        if (j <= N) yusen[j++] = pr++;
    }
    auto f = [&](const int &l, const int &r){ return yusen[l] < yusen[r]; };
    set<int, function<bool (const int &l, const int &r)>> aki(f), aki_pri(f);
    FOR(i, 1, N + 1) aki.insert(i), aki_pri.insert(i);
    map<lint, vector<plint>> kyaku;
    int Q;
    cin >> Q;
    REP(q, Q) {
        int a, b;
        cin >> a >> b;
        kyaku[a].emplace_back(q, b);  // hito, duration
    }
    lint t = -1;
    vector<int> ret(Q);
    queue<plint> waiting;
    vector<int> state(N + 2);
    while (true)
    {
        auto p = kyaku.upper_bound(t);
        if (p == kyaku.end()) break;
        t = p->first;
        for (auto pa : p->second) {
            lint q = pa.first, T = pa.second;
            if (q >= 0) waiting.emplace(pa);
            if (q < 0)
            {
                aki.insert(T);
                state[T] = 0;
                FOR(d, -1, 2) if ((T + d - 1 < 0 or !state[T + d - 1]) and !state[T + d] and !state[T + d + 1] and T + d > 0 and T + d <= N) aki_pri.insert(T + d);

            }
        }
        while (aki.size() and waiting.size()) {
            lint q = waiting.front().first, T = waiting.front().second;
            int v;
            if (aki_pri.size())
            {
                v = *aki_pri.begin();
                aki_pri.erase(v);
                aki_pri.erase(v - 1);
                aki_pri.erase(v + 1);
            }
            else
            {
                v = *aki.begin();
            }
            waiting.pop();
            kyaku[t + T].emplace_back(-1, v);
            aki.erase(v);
            state[v] = 1;
            ret[q] = v;
        }
    }
    REP(q, Q) printf("%d\n", ret[q]);
}
0