結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 hos.lyrichos.lyric
提出日時 2022-12-16 00:20:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 2,464 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 113,332 KB
実行使用メモリ 25,464 KB
平均クエリ数 880.41
最終ジャッジ日時 2024-04-27 00:08:00
合計ジャッジ時間 17,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,452 KB
testcase_01 AC 135 ms
25,068 KB
testcase_02 AC 143 ms
25,196 KB
testcase_03 AC 98 ms
24,812 KB
testcase_04 AC 24 ms
24,556 KB
testcase_05 AC 30 ms
24,812 KB
testcase_06 AC 29 ms
24,812 KB
testcase_07 AC 29 ms
24,812 KB
testcase_08 AC 100 ms
25,464 KB
testcase_09 AC 26 ms
24,824 KB
testcase_10 AC 33 ms
24,440 KB
testcase_11 AC 154 ms
24,812 KB
testcase_12 AC 125 ms
24,812 KB
testcase_13 AC 24 ms
24,544 KB
testcase_14 AC 29 ms
24,812 KB
testcase_15 AC 25 ms
24,556 KB
testcase_16 AC 124 ms
24,812 KB
testcase_17 AC 66 ms
24,812 KB
testcase_18 AC 205 ms
24,812 KB
testcase_19 AC 24 ms
24,824 KB
testcase_20 AC 28 ms
24,824 KB
testcase_21 AC 52 ms
24,836 KB
testcase_22 AC 44 ms
24,836 KB
testcase_23 AC 41 ms
24,836 KB
testcase_24 AC 38 ms
25,208 KB
testcase_25 AC 81 ms
24,836 KB
testcase_26 AC 144 ms
24,812 KB
testcase_27 AC 45 ms
25,196 KB
testcase_28 AC 68 ms
25,196 KB
testcase_29 AC 24 ms
24,812 KB
testcase_30 AC 24 ms
24,940 KB
testcase_31 AC 24 ms
25,452 KB
testcase_32 AC 109 ms
25,196 KB
evil_2_big_1.txt AC 1,757 ms
25,180 KB
evil_2_big_2.txt AC 1,895 ms
24,812 KB
evil_2_big_3.txt AC 1,723 ms
24,812 KB
evil_big_1.txt AC 1,863 ms
24,836 KB
evil_big_2.txt AC 1,915 ms
25,208 KB
evil_big_3.txt AC 1,926 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }


int N;
vector<int> A;

int main() {
  scanf("%d", &N);
  A.resize(N);
  for (int i = 0; i < N; ++i) {
    scanf("%d", &A[i]);
  }
  
  int now = 0;
  for (int i = 0; i < N; ++i) {
    now ^= A[i];
  }
  printf("%d\n", (now != 0) ? 1 : 0);
  fflush(stdout);
  
  map<int, set<int>> iss;
  for (int i = 0; i < N; ++i) {
    iss[A[i]].insert(i);
  }
  
  auto update = [&](int i, int k) -> void {
    now ^= A[i];
    iss[A[i]].erase(i);
    if (iss[A[i]].empty()) {
      iss.erase(A[i]);
    }
    A[i] -= k;
    now ^= A[i];
    iss[A[i]].insert(i);
  };
  
  for (; ; ) {
// cerr<<"now = "<<now<<endl;for(const auto&kv:iss){cerr<<"iss["<<kv.first<<"] = ";pv(kv.second.begin(),kv.second.end());}
    if (now != 0) {
      for (auto it = iss.begin(); it != iss.end(); ++it) {
        const int a = it->first;
        const int k = a - (a ^ now);
        if (k > 0) {
          const int i = *it->second.begin();
          printf("%d %d\n", i + 1, k);
          fflush(stdout);
          int res;
          scanf("%d", &res);
          if (res == -1) exit(0);
          update(i, k);
          break;
        }
      }
    }
    {
      int i, k;
      scanf("%d%d", &i, &k);
      int res;
      scanf("%d", &res);
      if (res == -1) exit(0);
      --i;
      update(i, k);
    }
  }
  
  return 0;
}
0