結果

問題 No.2962 Sum Bomb Bomber
ユーザー tnakao0123tnakao0123
提出日時 2024-11-18 16:32:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 1,367 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 44,288 KB
実行使用メモリ 25,452 KB
平均クエリ数 189.62
最終ジャッジ日時 2024-11-18 16:32:46
合計ジャッジ時間 10,227 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
24,824 KB
testcase_01 AC 99 ms
24,568 KB
testcase_02 AC 95 ms
24,824 KB
testcase_03 AC 94 ms
24,568 KB
testcase_04 AC 95 ms
24,824 KB
testcase_05 AC 93 ms
24,824 KB
testcase_06 AC 79 ms
24,796 KB
testcase_07 AC 94 ms
24,568 KB
testcase_08 AC 93 ms
25,208 KB
testcase_09 AC 92 ms
24,824 KB
testcase_10 AC 93 ms
25,208 KB
testcase_11 AC 92 ms
24,824 KB
testcase_12 AC 95 ms
24,824 KB
testcase_13 AC 85 ms
24,440 KB
testcase_14 AC 94 ms
25,208 KB
testcase_15 AC 79 ms
25,064 KB
testcase_16 AC 91 ms
24,568 KB
testcase_17 AC 92 ms
24,952 KB
testcase_18 AC 92 ms
24,440 KB
testcase_19 AC 93 ms
25,208 KB
testcase_20 AC 89 ms
24,440 KB
testcase_21 AC 81 ms
24,812 KB
testcase_22 AC 91 ms
24,568 KB
testcase_23 AC 93 ms
25,208 KB
testcase_24 AC 92 ms
25,208 KB
testcase_25 AC 85 ms
24,568 KB
testcase_26 AC 95 ms
24,824 KB
testcase_27 AC 94 ms
25,208 KB
testcase_28 AC 93 ms
24,824 KB
testcase_29 AC 91 ms
25,208 KB
testcase_30 AC 91 ms
24,568 KB
testcase_31 AC 80 ms
24,440 KB
testcase_32 AC 90 ms
24,440 KB
testcase_33 AC 91 ms
24,952 KB
testcase_34 AC 100 ms
24,568 KB
testcase_35 AC 92 ms
25,208 KB
testcase_36 AC 92 ms
24,824 KB
testcase_37 AC 99 ms
24,568 KB
testcase_38 AC 95 ms
24,824 KB
testcase_39 AC 93 ms
24,824 KB
testcase_40 AC 94 ms
24,824 KB
testcase_41 AC 93 ms
24,568 KB
testcase_42 AC 99 ms
24,812 KB
testcase_43 AC 80 ms
25,208 KB
testcase_44 AC 92 ms
24,824 KB
testcase_45 AC 92 ms
24,952 KB
testcase_46 AC 94 ms
24,568 KB
testcase_47 AC 94 ms
24,824 KB
testcase_48 AC 94 ms
24,824 KB
testcase_49 AC 92 ms
24,824 KB
testcase_50 AC 92 ms
25,208 KB
testcase_51 AC 80 ms
24,812 KB
testcase_52 AC 92 ms
25,196 KB
testcase_53 AC 79 ms
24,556 KB
testcase_54 AC 80 ms
24,940 KB
testcase_55 AC 78 ms
24,556 KB
testcase_56 AC 79 ms
25,196 KB
testcase_57 AC 98 ms
25,196 KB
testcase_58 AC 92 ms
25,452 KB
testcase_59 AC 93 ms
24,812 KB
testcase_60 AC 94 ms
24,812 KB
testcase_61 AC 95 ms
24,812 KB
testcase_62 AC 87 ms
24,556 KB
testcase_63 AC 87 ms
24,812 KB
testcase_64 AC 86 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2962.cc:  No.2962 Sum Bomb Bomber - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MIN_X = -100000000;
const int MAX_X = 100000000;
const int MIN_Y = -100000000;
const int MAX_Y = 100000000;
const long long LINF = 1LL << 62;

/* typedef */

using ll = long long;

/* global variables */

/* subroutines */

ll query(int x, int y) {
  printf("1 %d %d\n", x, y); fflush(stdout);
  ll d;
  scanf("%lld", &d);
  return d;
}

/* main */

int main() {
  int n;
  scanf("%d", &n);

  int x0 = MIN_X, x1 = MAX_X;
  while (x0 + 2 < x1) {
    int xx0 = (x0 * 2 + x1) / 3;
    int xx1 = (x0 + x1 * 2) / 3;
    ll d0 = query(xx0, 0);
    ll d1 = query(xx1, 0);
    if (d0 > d1) x0 = xx0;
    else x1 = xx1;
  }

  ll mindx = LINF;
  int minx = -1;
  for (int x = x0; x <= x1; x++) {
    ll d = query(x, 0);
    if (mindx > d) mindx = d, minx = x;
  }

  int y0 = MIN_Y, y1 = MAX_Y;
  while (y0 + 2 < y1) {
    int yy0 = (y0 * 2 + y1) / 3;
    int yy1 = (y0 + y1 * 2) / 3;
    ll d0 = query(minx, yy0);
    ll d1 = query(minx, yy1);
    if (d0 > d1) y0 = yy0;
    else y1 = yy1;
  }

  ll mindy = LINF;
  int miny = -1;
  for (int y = y0; y <= y1; y++) {
    ll d = query(minx, y);
    if (mindy > d) mindy = d, miny = y;
  }

  printf("2 %d %d\n", minx, miny); fflush(stdout);
  
  return 0;
}
0