結果

問題 No.594 壊れた宝物発見機
ユーザー Naoyk1212Naoyk1212
提出日時 2017-11-10 23:42:07
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 59,428 KB
実行使用メモリ 25,616 KB
平均クエリ数 46.80
最終ジャッジ日時 2024-07-16 14:37:06
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
25,220 KB
testcase_01 AC 99 ms
24,964 KB
testcase_02 AC 99 ms
25,220 KB
testcase_03 AC 100 ms
24,964 KB
testcase_04 AC 102 ms
25,220 KB
testcase_05 AC 99 ms
25,220 KB
testcase_06 AC 98 ms
24,964 KB
testcase_07 AC 102 ms
24,836 KB
testcase_08 AC 101 ms
25,220 KB
testcase_09 AC 97 ms
24,976 KB
testcase_10 AC 99 ms
25,232 KB
testcase_11 AC 101 ms
25,616 KB
testcase_12 AC 103 ms
24,976 KB
testcase_13 AC 101 ms
25,232 KB
testcase_14 AC 100 ms
24,976 KB
testcase_15 AC 99 ms
25,232 KB
testcase_16 AC 97 ms
25,488 KB
testcase_17 AC 100 ms
25,360 KB
testcase_18 AC 101 ms
25,232 KB
testcase_19 AC 107 ms
24,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<stack>

int ask(int x, int y, int z) {
	std::cout << "? " << x << " " << y << " " << z << std::endl;
	int ret;
	std::cin >> ret;
	return ret;
}

int main(){
	int x, y, z;

	int r = 101;
	int l = -101;
	while(r - l > 1) {
		int mid = (r + l) / 2;
		if(ask(mid, 0, 0) > ask(mid + 1, 0, 0)) { 
			l = mid;
		} else {
			r = mid;
		}
	}
	x = r;

	r = 101;
	l = -101;
	while(r - l > 1) {
		int mid = (r + l) / 2;
		if(ask(0, mid, 0) > ask(0, mid + 1, 0)) { 
			l = mid;
		} else {
			r = mid;
		}
	}
	y = r;

	r = 101;
	l = -101;
	while(r - l > 1) {
		int mid = (r + l) / 2;
		if(ask(0, 0, mid) > ask(0, 0, mid + 1)) { 
			l = mid;
		} else {
			r = mid;
		}
	}
	z = r;

	std::cout << "! " << x << " " << y << " " << z << std::endl;

}


0