結果

問題 No.2165 Let's Play Nim!
ユーザー KudeKude
提出日時 2022-12-16 09:01:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 2,283 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 204,492 KB
実行使用メモリ 29,576 KB
平均クエリ数 889.28
最終ジャッジ日時 2024-04-27 12:08:05
合計ジャッジ時間 14,516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
28,904 KB
testcase_01 AC 122 ms
29,576 KB
testcase_02 AC 130 ms
28,300 KB
testcase_03 AC 89 ms
29,504 KB
testcase_04 AC 22 ms
28,964 KB
testcase_05 AC 27 ms
28,296 KB
testcase_06 AC 26 ms
28,064 KB
testcase_07 AC 26 ms
28,932 KB
testcase_08 AC 92 ms
28,420 KB
testcase_09 AC 22 ms
28,188 KB
testcase_10 AC 28 ms
27,884 KB
testcase_11 AC 127 ms
29,052 KB
testcase_12 AC 113 ms
29,044 KB
testcase_13 AC 22 ms
29,252 KB
testcase_14 AC 27 ms
28,288 KB
testcase_15 AC 23 ms
28,676 KB
testcase_16 AC 108 ms
28,288 KB
testcase_17 AC 65 ms
29,112 KB
testcase_18 AC 177 ms
28,888 KB
testcase_19 AC 22 ms
29,148 KB
testcase_20 AC 24 ms
28,936 KB
testcase_21 AC 48 ms
29,284 KB
testcase_22 AC 40 ms
28,992 KB
testcase_23 AC 37 ms
28,840 KB
testcase_24 AC 34 ms
28,524 KB
testcase_25 AC 75 ms
28,992 KB
testcase_26 AC 125 ms
28,868 KB
testcase_27 AC 45 ms
28,112 KB
testcase_28 AC 68 ms
29,312 KB
testcase_29 AC 22 ms
29,272 KB
testcase_30 AC 20 ms
28,848 KB
testcase_31 AC 21 ms
29,184 KB
testcase_32 AC 56 ms
29,444 KB
evil_2_big_1.txt AC 1,263 ms
28,904 KB
evil_2_big_2.txt AC 1,494 ms
29,004 KB
evil_2_big_3.txt AC 1,222 ms
28,332 KB
evil_big_1.txt AC 1,510 ms
29,392 KB
evil_big_2.txt AC 1,578 ms
28,624 KB
evil_big_3.txt AC 1,532 ms
29,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

template<int element_size>
struct array_set {
  int state[element_size];  // -1 if not in set else index in elems
  int elems[element_size];
  int size = 0;
  array_set() { memset(state, -1, sizeof(int) * element_size); }
  void insert(int x) {
    if (state[x] == -1) {
      state[x] = size;
      elems[size] = x;
      size++;
    }
  }
  bool contains(int x) { return state[x] != -1; }
  int* begin() { return elems; }
  int* end() { return elems + size; }
  void clear() { while(size) state[elems[--size]] = -1; }
  void erase(int x) {  // not tested
    int idx = state[x];
    if (idx != -1) {
      state[x] = -1;
      size--;
      if (idx != size) {
        int y = elems[size];
        state[y] = idx;
        elems[idx] = y;
      }
    }
  }
};

constexpr int M = 75000;

array_set<M> st[17];

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  VI a(n);
  rep(i, n) {
    cin >> a[i];
    rep(k, 17) if (a[i] >> k & 1) st[k].insert(i);
  }
  int g = 0;
  rrep(i, n) g ^= a[i];
  cout << int(g != 0) << endl;
  while(true) {
    if (g) {
      int msb = 31 - __builtin_clz(g);
      int i = st[msb].elems[0];
      int x = a[i], nx = x ^ g;
      a[i] = nx;
      cout << i + 1 << ' ' << x - nx << endl;
      rrep(k, msb + 1) if (g >> k & 1) {
        if (x >> k & 1) st[k].erase(i);
        else st[k].insert(i);
      }
      g = 0;
    } else {
      int i, dec;
      cin >> i >> dec;
      i--;
      int x = a[i], nx = x - dec;
      a[i] = nx;
      g = x ^ nx;
      rrep(k, 17) if (g >> k & 1) {
        if (x >> k & 1) st[k].erase(i);
        else st[k].insert(i);
      }
    }
    int ret;
    cin >> ret;
    if (ret == -1) exit(0);
  }
}
0