結果

問題 No.2165 Let's Play Nim!
ユーザー suisensuisen
提出日時 2022-12-24 04:32:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 1,919 bytes
コンパイル時間 1,083 ms
コンパイル使用メモリ 81,804 KB
実行使用メモリ 25,580 KB
平均クエリ数 897.46
最終ジャッジ日時 2024-11-18 05:07:48
合計ジャッジ時間 13,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
25,580 KB
testcase_01 AC 108 ms
24,812 KB
testcase_02 AC 117 ms
24,940 KB
testcase_03 AC 76 ms
25,580 KB
testcase_04 AC 19 ms
25,196 KB
testcase_05 AC 24 ms
25,196 KB
testcase_06 AC 23 ms
25,196 KB
testcase_07 AC 22 ms
25,196 KB
testcase_08 AC 91 ms
25,464 KB
testcase_09 AC 20 ms
24,952 KB
testcase_10 AC 27 ms
25,208 KB
testcase_11 AC 116 ms
25,196 KB
testcase_12 AC 100 ms
24,556 KB
testcase_13 AC 19 ms
25,196 KB
testcase_14 AC 22 ms
24,940 KB
testcase_15 AC 19 ms
24,812 KB
testcase_16 AC 96 ms
25,196 KB
testcase_17 AC 49 ms
25,196 KB
testcase_18 AC 166 ms
24,812 KB
testcase_19 AC 19 ms
25,208 KB
testcase_20 AC 21 ms
24,568 KB
testcase_21 AC 41 ms
24,836 KB
testcase_22 AC 34 ms
24,580 KB
testcase_23 AC 32 ms
24,836 KB
testcase_24 AC 30 ms
24,836 KB
testcase_25 AC 64 ms
24,836 KB
testcase_26 AC 128 ms
24,812 KB
testcase_27 AC 40 ms
25,196 KB
testcase_28 AC 61 ms
24,940 KB
testcase_29 AC 18 ms
24,940 KB
testcase_30 AC 17 ms
25,124 KB
testcase_31 AC 18 ms
25,196 KB
testcase_32 AC 93 ms
25,196 KB
evil_2_big_1.txt AC 1,371 ms
25,196 KB
evil_2_big_2.txt AC 1,470 ms
24,812 KB
evil_2_big_3.txt AC 1,364 ms
25,196 KB
evil_big_1.txt AC 1,473 ms
24,580 KB
evil_big_2.txt AC 1,590 ms
25,476 KB
evil_big_3.txt AC 1,498 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <array>
#include <cassert>
#include <iostream>
#include <queue>
#include <vector>

constexpr uint32_t L = 17;

struct PQ {
    std::priority_queue<size_t> s, t;
    void insert(size_t x) { s.push(x); }
    void erase(size_t x) { t.push(x); }
    size_t top() {
        while (t.size() and s.top() == t.top()) s.pop(), t.pop();
        return s.top();
    }
};

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    size_t n;
    std::cin >> n;

    uint32_t x = 0;
    std::vector<uint32_t> a(n);

    std::array<PQ, L> pqs{};
    for (size_t i = 0; i < n; ++i) {
        std::cin >> a[i], x ^= a[i];
        for (uint32_t j = 0; j < L; ++j) {
            if ((a[i] >> j) & 1) pqs[j].insert(i);
        }
    }

    bool t = x;
    std::cout << t << '\n', std::cout.flush();

    auto update = [&](size_t i, uint32_t k) {
        for (uint32_t j = 0; j < L; ++j) {
            if ((a[i] >> j) & 1) {
                pqs[j].erase(i);
            }
        }
        x ^= a[i];
        a[i] -= k;
        x ^= a[i];
        for (uint32_t j = 0; j < L; ++j) {
            if ((a[i] >> j) & 1) {
                pqs[j].insert(i);
            }
        }
    };

    for (;; t = not t) {
        if (t) {
            assert(x);
            for (uint32_t bit = L; bit-- > 0;) {
                if ((x >> bit) & 1) {
                    size_t i = pqs[bit].top();
                    uint32_t k = a[i] - (x ^ a[i]);
                    assert(k and k <= a[i]);
                    update(i, k);
                    std::cout << i + 1 << ' ' << k << '\n', std::cout.flush();
                    break;
                }
            }
        } else {
            assert(x == 0);
            size_t i;
            uint32_t k;
            std::cin >> i >> k;
            --i;
            update(i, k);
        }
        int ret;
        std::cin >> ret;
        if (ret == -1) break;
    }
}
0