結果

問題 No.953 席
ユーザー PachicobuePachicobue
提出日時 2019-12-16 01:41:23
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 7,688 bytes
コンパイル時間 2,719 ms
コンパイル使用メモリ 220,456 KB
実行使用メモリ 12,776 KB
最終ジャッジ日時 2023-09-15 16:21:12
合計ジャッジ時間 7,222 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 70 ms
6,064 KB
testcase_03 AC 66 ms
5,688 KB
testcase_04 AC 70 ms
5,988 KB
testcase_05 AC 57 ms
5,372 KB
testcase_06 AC 71 ms
6,248 KB
testcase_07 AC 145 ms
12,052 KB
testcase_08 AC 139 ms
9,864 KB
testcase_09 AC 139 ms
12,776 KB
testcase_10 AC 36 ms
6,280 KB
testcase_11 AC 103 ms
8,404 KB
testcase_12 AC 113 ms
8,260 KB
testcase_13 AC 137 ms
9,712 KB
testcase_14 AC 101 ms
7,864 KB
testcase_15 AC 94 ms
7,588 KB
testcase_16 AC 96 ms
7,996 KB
testcase_17 AC 94 ms
8,404 KB
testcase_18 AC 86 ms
7,748 KB
testcase_19 AC 119 ms
9,724 KB
testcase_20 AC 84 ms
8,068 KB
testcase_21 AC 66 ms
6,272 KB
testcase_22 AC 111 ms
8,536 KB
testcase_23 AC 82 ms
6,676 KB
testcase_24 AC 84 ms
6,776 KB
testcase_25 AC 143 ms
9,968 KB
testcase_26 AC 47 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// created [2019/12/15] 17:30:14
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wsign-conversion"

using i32   = int32_t;
using i64   = int64_t;
using u32   = uint32_t;
using u64   = uint64_t;
using uint  = unsigned int;
using usize = std::size_t;
using ll    = long long;
using ull   = unsigned long long;
using ld    = long double;
template<typename T, usize n>
using arr = T (&)[n];
template<typename T, usize n>
using c_arr = const T (&)[n];
template<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return static_cast<bool>((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> void bset(T& mask, const usize ind) { mask |= (static_cast<T>(1) << ind); }
template<typename T> void breset(T& mask, const usize ind) { mask &= ~(static_cast<T>(1) << ind); }
template<typename T> void bflip(T& mask, const usize ind) { mask ^= (static_cast<T>(1) << ind); }
template<typename T> void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};
auto fix_point = [](auto f) { return [=](auto&&... args) { return f(f, std::forward<decltype(args)>(args)...); }; };

template<typename T>
T in()
{
    T v;
    return std::cin >> v, v;
}
template<typename T, typename Uint, usize n, usize i>
T in_v(typename std::enable_if<(i == n), c_arr<Uint, n>>::type) { return in<T>(); }
template<typename T, typename Uint, usize n, usize i>
auto in_v(typename std::enable_if<(i < n), c_arr<Uint, n>>::type& szs)
{
    const usize s = (usize)szs[i];
    std::vector<decltype(in_v<T, Uint, n, i + 1>(szs))> ans(s);
    for (usize j = 0; j < s; j++) { ans[j] = in_v<T, Uint, n, i + 1>(szs); }
    return ans;
}
template<typename T, typename Uint, usize n>
auto in_v(c_arr<Uint, n> szs) { return in_v<T, Uint, n, 0>(szs); }
template<typename... Types>
auto in_t() { return std::tuple<std::decay_t<Types>...>{in<Types>()...}; }
struct io_init
{
    io_init()
    {
        std::cin.tie(nullptr), std::ios::sync_with_stdio(false);
        std::cout << std::fixed << std::setprecision(20);
    }
} hogechan;

template<typename T>
void out(const T& v) { std::cout << v; }
template<typename T>
void out(const std::vector<T>& v)
{
    for (usize i = 0; i < v.size(); i++) {
        if (i > 0) { std::cout << ' '; }
        out(v[i]);
    }
    std::cout << "\n";
}
template<typename T1, typename T2>
void out(const std::pair<T1, T2>& v) { out(v.first), std::cout << ' ', out(v.second); }
template<typename T, typename... Args>
void out(const T& v, const Args... args) { out(v), std::cout << ' ', out(args...); }
template<typename... Args>
void outln(const Args... args) { out(args...), std::cout << '\n'; }
template<typename... Args>
void outel(const Args... args) { out(args...), std::cout << std::endl; }
#    define SHOW(...) static_cast<void>(0)
constexpr ull TEN(const usize n) { return n == 0 ? 1ULL : TEN(n - 1) * 10ULL; }

template<typename T, typename Uint, usize n, usize i>
auto make_v(typename std::enable_if<(i == n), c_arr<Uint, n>>::type, const T& v = T{}) { return v; }
template<typename T, typename Uint, usize n, usize i>
auto make_v(typename std::enable_if<(i < n), c_arr<Uint, n>>::type szs, const T& v = T{})
{
    const usize s = (usize)szs[i];
    return std::vector<decltype(make_v<T, Uint, n, i + 1>(szs, v))>(s, make_v<T, Uint, n, i + 1>(szs, v));
}
template<typename T, typename Uint, usize n>
auto make_v(c_arr<Uint, n> szs, const T& t = T{}) { return make_v<T, Uint, n, 0>(szs, t); }
int main()
{
    const auto N  = in<int>();
    const auto K1 = in<int>();
    const auto K2 = in<int>();
    const auto D  = K1 * 2 + K2;
    auto comp     = [D](const int k1, const int k2) { return std::abs(3 * k1 - D) < std::abs(std::abs(3 * k2 - D)); };
    std::vector<bool> empty(N + 2, true);
    std::set<int, decltype(comp)> seats(comp);
    std::set<int, decltype(comp)> good_seats(comp);
    for (int i = 1; i <= N; i++) {
        seats.insert(i);
        good_seats.insert(i);
    }
    auto good = [&](const int k) {
        if (k < 1 or k > N or not empty[k]) { return false; }
        return empty[k - 1] and empty[k + 1];
    };
    auto sit_at = [&](const int k) {
        assert(empty[k]);
        if (good(k)) { good_seats.erase(k); }
        empty[k] = false;
        seats.erase(k);
        if (not good(k - 1)) { good_seats.erase(k - 1); }
        if (not good(k + 1)) { good_seats.erase(k + 1); }
    };
    auto sit = [&]() -> int {
        if (not good_seats.empty()) {
            const int k = *good_seats.begin();
            sit_at(k);
            return k;
        } else if (not seats.empty()) {
            const int k = *seats.begin();
            sit_at(k);
            return k;
        } else {
            return 0;
        }
    };
    auto leave = [&](const int k) {
        assert(not empty[k]);
        empty[k] = true;
        seats.insert(k);
        if (good(k)) { good_seats.insert(k); }
        if (good(k - 1)) { good_seats.insert(k - 1); }
        if (good(k + 1)) { good_seats.insert(k + 1); }
    };
    using pli    = std::pair<ll, int>;
    const auto Q = in<int>();
    std::vector<ll> a(Q), b(Q);
    for (int i = 0; i < Q; i++) { a[i] = in<ll>(), b[i] = in<ll>(); }

    std::deque<ll> cs;
    for (int i = 0; i < Q; i++) { cs.push_back(a[i]); }
    std::set<pli> ls;

    ll tim = 0;
    for (int i = 0; i < Q; i++) {
        SHOW(good_seats);
        SHOW(seats);
        SHOW(cs);
        SHOW(ls);
        chmax(tim, a[i]);
        while (not ls.empty()) {
            const auto info = *ls.begin();
            if (info.first <= tim) {
                ls.erase(ls.begin());
                leave(info.second);
            } else {
                break;
            }
        }
        int k = 0;
        while ((k = sit()) == 0) {
            const auto info = *ls.begin();
            chmax(tim, info.first);
            while (not ls.empty() and ls.begin()->first == tim) {
                leave(ls.begin()->second);
                ls.erase(ls.begin());
            }
        }
        SHOW(tim, k);
        SHOW(empty);
        cs.pop_front();
        ls.insert({tim + b[i], k});
        outln(k);
    }
    return 0;
}
0