結果

問題 No.513 宝探し2
ユーザー misora192misora192
提出日時 2020-07-24 21:45:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 1,608 ms
コンパイル使用メモリ 167,160 KB
実行使用メモリ 25,476 KB
平均クエリ数 67.25
最終ジャッジ日時 2024-07-17 02:50:06
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,476 KB
testcase_01 AC 27 ms
24,836 KB
testcase_02 AC 27 ms
24,580 KB
testcase_03 AC 26 ms
24,964 KB
testcase_04 AC 27 ms
25,076 KB
testcase_05 AC 25 ms
24,580 KB
testcase_06 AC 26 ms
25,220 KB
testcase_07 AC 26 ms
25,092 KB
testcase_08 AC 25 ms
24,836 KB
testcase_09 AC 26 ms
25,220 KB
testcase_10 AC 26 ms
25,220 KB
testcase_11 AC 27 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;


int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	int lx = -10, rx = 1e6 + 10;
	auto calc = [](int x, int y){
		cout << x << " " << y << endl;
		int d;
		cin >> d;

		if(d == 0) exit(0);
		return d;
	};

	while(rx - lx > 1){
		int mx = (lx + rx) / 2;
		(calc(mx, 0) - calc(mx-1, 0) > 0 ? rx : lx) = mx;
	}

	int ly = -10, ry = 1e6 + 10;
	while(ry - ly > 1){
		int my = (ly + ry) / 2;
		(calc(lx, my) - calc(lx, my-1) > 0 ? ry : ly) = my;
	}

	cout << lx << " " << ly << endl;
}
0