結果

問題 No.594 壊れた宝物発見機
ユーザー masamasa
提出日時 2017-11-10 23:32:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 69,512 KB
実行使用メモリ 25,348 KB
平均クエリ数 54.90
最終ジャッジ日時 2024-07-16 14:34:49
合計ジャッジ時間 4,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
24,580 KB
testcase_01 AC 114 ms
25,220 KB
testcase_02 AC 114 ms
25,220 KB
testcase_03 AC 113 ms
25,348 KB
testcase_04 AC 114 ms
25,348 KB
testcase_05 AC 115 ms
25,220 KB
testcase_06 AC 114 ms
25,208 KB
testcase_07 AC 115 ms
24,836 KB
testcase_08 AC 115 ms
24,836 KB
testcase_09 AC 113 ms
24,848 KB
testcase_10 AC 115 ms
24,848 KB
testcase_11 AC 114 ms
24,592 KB
testcase_12 AC 117 ms
25,220 KB
testcase_13 AC 116 ms
24,592 KB
testcase_14 AC 115 ms
25,232 KB
testcase_15 AC 115 ms
25,232 KB
testcase_16 AC 117 ms
24,848 KB
testcase_17 AC 113 ms
25,232 KB
testcase_18 AC 114 ms
25,232 KB
testcase_19 AC 116 ms
25,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>

using namespace std;

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

int ask(int val, char which) {
	int d = -99;
	switch (which) {
		case 'x': d = ask(val,   0,   0); break;
		case 'y': d = ask(  0, val,   0); break;
		case 'z': d = ask(  0,   0, val); break;
		default: break;
	}
	return d;
}



// 回答クエリ
void answer(int x, int y, int z) {
	cout << "!" << " " << x << " " << y << " " << z << endl;
}

int calc(char which) {

	int upper = 150;
	int mid = 0;
	int lower = -150;

	while (upper - lower > 2) {
		int d_upper = ask(upper, which);
		int d_lower = ask(lower, which);

		if (d_upper > d_lower) {
			upper = mid;
			mid = (lower + mid) / 2;
		} else {
			lower = mid;
			mid = (mid + upper) / 2;
		}
	}

	int d_upper = ask(upper, which);
	int d_mid   = ask(mid,   which);
	int d_lower = ask(lower, which);

	int d_min = min({d_lower, d_mid, d_upper});

	if (d_min == d_upper) {
		return upper;
	} else if (d_min == d_mid) {
		return mid;
	} else {
		return lower;
	}
}


int main() {
	int x = calc('x');
	int y = calc('y');
	int z = calc('z');

	answer(x, y, z);
	return 0;
}
0