結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | rpy3cpp |
提出日時 | 2017-11-13 00:43:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,276 bytes |
コンパイル時間 | 1,601 ms |
コンパイル使用メモリ | 168,196 KB |
実行使用メモリ | 25,844 KB |
平均クエリ数 | 127.00 |
最終ジャッジ日時 | 2024-07-16 14:50:00 |
合計ジャッジ時間 | 4,833 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int ask(int x, int y, int z){ cout << "? " << x << ' ' << y << ' ' << z << endl; int d; cin >> d; return d; } int ask(int v, int p, int q, int t){ if (t == 0){ return ask(v, p, q); }else if (t == 1){ return ask(p, v, q); }else if (t == 2){ return ask(p, q, v); } return -1; } int fix_v(int va, int vb, int p, int q, int t){ while (va + 2 < vb){ cout << "##: " << va << ' ' << vb << endl; int v1 = va + (vb - va)/3; int v2 = vb - (vb - va)/3; int d1 = ask(v1, p, q, t); int d2 = ask(v2, p, q, t); if (d1 > d2){ va = v1; }else{ vb = v2; } } int min_d = ask(va, p, q, t); int v = va; for (int vi = va + 1; vi <= vb; ++vi){ int d = ask(vi, p, q, t); if (d < min_d) { min_d = d; v = vi; } } return v; } int main(){ int xa = -150; int xb = 150; int ya = -150; int yb = 150; int za = -150; int zb = 150; int x = fix_v(xa, xb, 0, 0, 0); int y = fix_v(ya, yb, x, 0, 1); int z = fix_v(za, zb, x, y, 2); cout << "! " << x << ' ' << y << ' ' << z << endl; return 0; }