結果

問題 No.2165 Let's Play Nim!
ユーザー tnakao0123tnakao0123
提出日時 2022-12-19 01:40:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,533 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 61,056 KB
実行使用メモリ 38,176 KB
平均クエリ数 0.08
最終ジャッジ日時 2024-04-29 01:56:06
合計ジャッジ時間 4,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,196 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 98 ms
25,580 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 WA -
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
evil_2_big_1.txt -- -
evil_2_big_2.txt -- -
evil_2_big_3.txt -- -
evil_big_1.txt -- -
evil_big_2.txt -- -
evil_big_3.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2165.cc:  No.2165 Let's Play Nim! - yukicoder
 */

#include<cstdio>
#include<set>
#include<algorithm>
#include<utility>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 75000;
const int BN = 17;

enum { First = 1, Second = 0 };

/* typedef */

typedef pair<int,int> pii;
typedef set<pii> spii;

/* global variables */

int as[MAX_N];
spii bps[BN];

/* subroutines */

inline int msb(int x) {
  int k = 0, bk = 1;
  while ((bk << 1) <= x) k++, bk <<= 1;
  //printf("msb(%d)=%d\n", x, k);
  return k;
}

void replace(int i, int ai) {
  bps[msb(as[i])].erase(pii(as[i], i));
  if (ai > 0) bps[msb(ai)].insert(pii(ai, i));
  as[i] = ai;
}

int my_act(int x) {
  int i = bps[msb(x)].begin()->second;
  int ai = x ^ as[i], k = as[i] - ai;
  replace(i, ai);

  printf("%d %d\n", i + 1, k); fflush(stdout);
  int r;
  scanf("%d", &r);
  return r;
}

int judge_act() {
  int i, k, r;
  scanf("%d%d%d", &i, &k, &r), i--;

  int ai = as[i] - k, x = as[i] ^ ai;
  replace(i, ai);

  return (r < 0) ? -1 : x;
}

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  int x = 0;
  for (int i = 0; i < n; i++) {
    x ^= as[i];
    bps[msb(as[i])].insert(pii(as[i], i));
  }

  if (x != 0) {
    printf("%d\n", First), fflush(stdout);
    my_act(x);
  }
  else
    printf("%d\n", Second), fflush(stdout);

  for (;;) {
    int x = judge_act();
    if (x < 0) break;

    int r = my_act(x);
    if (r < 0) break;
  }

  return 0;
}
0