結果

問題 No.2502 Optimization in the Dark
ユーザー tnakao0123tnakao0123
提出日時 2024-06-20 14:08:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,325 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 44,160 KB
実行使用メモリ 25,836 KB
平均クエリ数 4.00
最終ジャッジ日時 2024-06-20 14:08:22
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,196 KB
testcase_01 AC 25 ms
24,556 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 27 ms
24,940 KB
testcase_05 AC 27 ms
25,196 KB
testcase_06 WA -
testcase_07 AC 27 ms
25,196 KB
testcase_08 AC 26 ms
24,556 KB
testcase_09 AC 26 ms
24,940 KB
testcase_10 WA -
testcase_11 AC 27 ms
24,556 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 25 ms
24,556 KB
testcase_18 AC 24 ms
24,556 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 25 ms
25,196 KB
testcase_23 AC 25 ms
24,952 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 25 ms
24,556 KB
testcase_27 AC 24 ms
24,556 KB
testcase_28 AC 26 ms
24,556 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2502.cc:  No.2502 Optimization in the Dark - yukicoder
 */

#include<cstdio>
#include<algorithm>
 
using namespace std;

/* subroutines */

bool query(int i, int x, int j, int y) {
  printf("? %d %d %d %d\n", i + 1, x + 1, j + 1, y + 1);
  fflush(stdout);

  char s[8];
  scanf("%s", s);
  return (s[0] == 'Y');
}

void op1(int p0, int p1, int p2) { // 2 x 3
  // 0 0 1
  // 1 2 2
  printf(" %d %d", p0 + 1, p1 + 1);
  printf(" %d %d", p2 + 1, p0 + 1);
  printf(" %d %d", p1 + 1, p2 + 1);
}

void op2(int p0, int p1, int p2) { // 4 x 3
  // 0 0 1
  // 1 2 3
  // 2 4 4
  // 3 5 5
  printf(" %d %d", p0 + 1, p1 + 1);
  printf(" %d %d", p2 + 1, p0 + 1);
  printf(" %d %d", p1 + 1, p0 + 1);
  printf(" %d %d", p0 + 1, p2 + 1);
  printf(" %d %d", p1 + 1, p2 + 1);
  printf(" %d %d", p1 + 1, p2 + 1);
}

/* main */

int main() {
  int n;
  scanf("%d", &n);
  int n2 = n * 2;

  bool f0 = query(0, n2 - 1, 1, n2 - 1);
  int p0 = f0 ? 1 : 0;
  bool f1 = query(p0, n2 - 1, 2, n2 - 1);
  if (f1) p0 = 2;
  int p1 = (p0 + 1) % 3, p2 = (p0 + 2) % 3;
  bool f2 = query(p1, n2 - 2, p2, n2 - 2);
  if (f2) swap(p1, p2);

  // v[p0][n2] >= max(v[p1][n2], v[p2][n2]
  // v[p1][n2-1] >= v[p2][n2-1]

  putchar('!');
  for (int i = 0; i < n; i++) op1(p0, p1, p2);
  putchar('\n'); fflush(stdout);

  return 0;
}
0