結果

問題 No.953 席
ユーザー nebukuro09nebukuro09
提出日時 2019-12-17 04:44:39
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 2,863 bytes
コンパイル時間 2,676 ms
コンパイル使用メモリ 180,220 KB
実行使用メモリ 26,416 KB
最終ジャッジ日時 2024-06-22 03:42:40
合計ジャッジ時間 9,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto K1 = s[1] - 1;
    auto K2 = s[2] - 1;
    auto Q = readln.chomp.to!int;
    auto A = iota(Q).map!(_ => readln.split.map!(to!long).array).array;

    int[] events;
    alias PQ = BinaryHeap!(Array!(Tuple!(int, long)), "a[1] > b[1]");
    auto pq1 = new PQ;
    auto pq2 = new PQ;
    foreach (i; 0..Q) pq1.insert(tuple(i, A[i][0]));
    long time = 0;

    while (!pq1.empty) {
        while (!pq2.empty && pq2.front[1] <= pq1.front[1]) {
            auto idx = pq2.front[0];
            events ~= -(idx + 1);
            pq2.removeFront;
        }
        if (pq2.length < N) {
            auto idx = pq1.front[0];
            auto t = pq1.front[1];
            time = max(time, t);
            events ~= idx + 1;
            pq1.removeFront;
            pq2.insert(tuple(idx, time + A[idx][1]));
        } else {
            auto t = pq2.front[1];
            while (!pq2.empty && pq2.front[1] == t) {
                auto idx = pq2.front[0];
                time = max(time, t);
                events ~= -(idx + 1);
                pq2.removeFront;
            }
        }
    }

    auto seats = new bool[](N);
    alias SET = RedBlackTree!(int, (a,b)=>abs(a-K1)==abs(b-K1)?abs(a-K2)<abs(b-K2):abs(a-K1)<abs(b-K1));
    auto set1 = new SET;
    auto set2 = new SET;
    foreach (i; 0..N) set1.insert(i);
    foreach (i; 0..N) set2.insert(i);

    auto ans = new int[](Q);

    bool both_empty(int a) {
        bool left_empty = a == 0 || !seats[a-1];
        bool right_empty = a == N - 1 || !seats[a+1];
        return left_empty && right_empty;
    }

    foreach (e; events) {
        int idx = abs(e) - 1;
        if (e > 0) {
            int a;
            if (!set1.empty) {
                a = set1.front;
                ans[idx] = a;
                seats[a] = true;
                set1.removeKey(a);
                set2.removeKey(a);
            } else {
                a = set2.front;
                ans[idx] = a;
                seats[a] = true;
                set2.removeKey(a);
            }
            if (a > 0 && !set1.equalRange(a-1).empty) {
                set1.removeKey(a-1);
            }
            if (a < N - 1 && !set1.equalRange(a+1).empty) {
                set1.removeKey(a+1);
            }
        } else {
            auto a = ans[idx];
            seats[a] = false;
            set2.insert(a);
            if (both_empty(a)) set1.insert(a);
            if (a > 0 && !seats[a-1] && both_empty(a-1)) set1.insert(a-1);
            if (a < N - 1 && !seats[a+1] && both_empty(a+1)) set1.insert(a+1);
        }
    }

    ans.map!(i => i + 1).each!writeln;
}


0