結果

問題 No.850 企業コンテスト2位
ユーザー lowrlowr
提出日時 2019-08-16 20:35:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 2,287 ms
コンパイル使用メモリ 206,980 KB
実行使用メモリ 25,604 KB
平均クエリ数 200.11
最終ジャッジ日時 2024-07-16 17:55:56
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,220 KB
testcase_01 AC 23 ms
24,836 KB
testcase_02 AC 23 ms
24,836 KB
testcase_03 AC 23 ms
24,580 KB
testcase_04 AC 22 ms
24,580 KB
testcase_05 AC 22 ms
24,964 KB
testcase_06 AC 23 ms
24,964 KB
testcase_07 AC 26 ms
24,964 KB
testcase_08 AC 28 ms
24,964 KB
testcase_09 AC 28 ms
25,220 KB
testcase_10 AC 34 ms
25,476 KB
testcase_11 AC 33 ms
24,964 KB
testcase_12 AC 33 ms
25,220 KB
testcase_13 AC 32 ms
24,964 KB
testcase_14 AC 33 ms
24,580 KB
testcase_15 AC 31 ms
24,580 KB
testcase_16 AC 31 ms
24,580 KB
testcase_17 AC 33 ms
25,220 KB
testcase_18 AC 31 ms
24,580 KB
testcase_19 AC 33 ms
25,220 KB
testcase_20 AC 33 ms
24,836 KB
testcase_21 AC 33 ms
24,580 KB
testcase_22 AC 33 ms
25,220 KB
testcase_23 AC 34 ms
24,964 KB
testcase_24 AC 33 ms
25,604 KB
testcase_25 AC 33 ms
24,580 KB
testcase_26 AC 33 ms
25,604 KB
testcase_27 AC 23 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using i64 = long long;

int ask(int a, int b) {
  printf("? %d %d\n", a, b);
  fflush(stdout);
  int ret;
  scanf("%d", &ret);
  return ret;
}

int main() {
  int n;
  scanf("%d", &n);
  std::vector<int> cs;
  for (int i = 1; i <= n; i++) cs.push_back(i);
  std::vector<std::vector<int>> wl(n + 1, std::vector<int>(n + 1));
  while (cs.size() > 1) {
    std::vector<int> next;
    for (int i = 1; 2 * i - 1 < cs.size(); i++) {
      int w = ask(cs[2 * i - 2], cs[2 * i - 1]);
      int l = cs[2 * i - 2] ^ cs[2 * i - 1] ^ w;
      next.push_back(w);
      wl[w][l] = 1;
      wl[l][w] = -1;
    }
    if (cs.size() & 1) next.push_back(cs.back());
    std::swap(next, cs);
  }

  int f = cs.front();
  std::vector<int> cand;
  for (int i = 1; i <= n; i++) if (wl[f][i] > 0) cand.push_back(i);

  while (cand.size() > 1) {
    std::vector<int> next;
    for (int i = 1; 2 * i - 1 < cand.size(); i++) {
      next.push_back(ask(cand[2 * i - 2], cand[2 * i - 1]));
    }
    if (cand.size() & 1) next.push_back(cand.back());
    std::swap(next, cand);
  }

  printf("! %d\n", cand.front());
  fflush(stdout);

  return 0;
}

0