結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,812 KB
testcase_01 AC 136 ms
25,196 KB
testcase_02 AC 144 ms
25,436 KB
testcase_03 AC 95 ms
25,452 KB
testcase_04 AC 24 ms
25,824 KB
testcase_05 AC 31 ms
25,196 KB
testcase_06 AC 30 ms
25,196 KB
testcase_07 AC 28 ms
24,812 KB
testcase_08 AC 116 ms
24,824 KB
testcase_09 AC 26 ms
24,440 KB
testcase_10 AC 35 ms
25,208 KB
testcase_11 AC 146 ms
25,196 KB
testcase_12 AC 126 ms
25,196 KB
testcase_13 AC 24 ms
25,452 KB
testcase_14 AC 30 ms
25,196 KB
testcase_15 AC 24 ms
24,556 KB
testcase_16 AC 121 ms
25,196 KB
testcase_17 AC 63 ms
25,196 KB
testcase_18 AC 203 ms
24,556 KB
testcase_19 AC 24 ms
25,208 KB
testcase_20 AC 29 ms
24,824 KB
testcase_21 AC 52 ms
25,604 KB
testcase_22 AC 45 ms
25,220 KB
testcase_23 AC 40 ms
25,220 KB
testcase_24 AC 39 ms
25,604 KB
testcase_25 AC 83 ms
24,836 KB
testcase_26 AC 161 ms
25,196 KB
testcase_27 AC 50 ms
25,196 KB
testcase_28 AC 80 ms
25,196 KB
testcase_29 AC 24 ms
25,196 KB
testcase_30 AC 24 ms
24,812 KB
testcase_31 AC 24 ms
24,940 KB
testcase_32 AC 107 ms
24,800 KB
evil_2_big_1.txt AC 1,672 ms
24,812 KB
evil_2_big_2.txt AC 1,814 ms
25,196 KB
evil_2_big_3.txt AC 1,658 ms
24,940 KB
evil_big_1.txt AC 1,792 ms
24,836 KB
evil_big_2.txt AC 1,803 ms
24,580 KB
evil_big_3.txt AC 1,806 ms
24,964 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