結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | face4 |
提出日時 | 2018-08-27 11:34:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,288 bytes |
コンパイル時間 | 585 ms |
コンパイル使用メモリ | 64,684 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 76.90 |
最終ジャッジ日時 | 2024-07-16 16:03:19 |
合計ジャッジ時間 | 4,416 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 119 ms
24,580 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 114 ms
25,220 KB |
testcase_07 | AC | 116 ms
25,220 KB |
testcase_08 | WA | - |
testcase_09 | AC | 120 ms
25,484 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 117 ms
24,848 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 115 ms
25,232 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
// 三分探索を関数化してプログラムをすっきりさせたい #include<iostream> using namespace std; int ask(int x, int y, int z){ int d; cout << "? " << x << " " << y << " " << z << endl; cin >> d; return d; } void answer(int x, int y, int z){ cout << "! " << x << " " << y << " " << z << endl; } int main(){ int lx = -150, rx = 150, ly = -150, ry = 150, lz = -150, rz = 150; int x, y = 0, z = 0; while(lx+2 < rx){ int mid1 = (rx-lx)/3+lx, mid2 = (rx-lx)*2/3+lx; int ask1 = ask(mid1,y,z); int ask2 = ask(mid2,y,z); if(ask1 <= ask2){ rx = mid2; }else{ lx = mid1; } } x = (lx+rx)/2; while(ly+2 < ry){ int mid1 = (ry-ly)/3+ly, mid2 = (ry-ly)*2/3+ly; int ask1 = ask(x,ly,z); int ask2 = ask(x,ry,z); if(ask1 <= ask2){ ry = mid2; }else{ ly = mid1; } } y = (ly+ry)/2; while(lz+2 < rz){ int mid1 = (rz-lz)/3+lz, mid2 = (rz-lz)*2/3+lz; int ask1 = ask(x,y,lz); int ask2 = ask(x,y,rz); if(ask1 <= ask2){ rz = mid2; }else{ lz = mid1; } } z = (lz+rz)/2; answer(x, y, z); return 0; }