結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | treeone |
提出日時 | 2017-11-10 23:19:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,140 bytes |
コンパイル時間 | 1,864 ms |
コンパイル使用メモリ | 158,836 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 151.00 |
最終ジャッジ日時 | 2024-07-16 14:32:31 |
合計ジャッジ時間 | 5,329 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 115 ms
24,964 KB |
testcase_05 | WA | - |
testcase_06 | AC | 110 ms
25,220 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 111 ms
24,592 KB |
testcase_10 | AC | 112 ms
24,592 KB |
testcase_11 | AC | 111 ms
25,232 KB |
testcase_12 | AC | 114 ms
25,232 KB |
testcase_13 | AC | 112 ms
25,360 KB |
testcase_14 | WA | - |
testcase_15 | AC | 113 ms
25,360 KB |
testcase_16 | AC | 115 ms
25,232 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 112 ms
24,976 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define REP(i, n) rep(i, 0, n) #define repb(i, a, b) for(int i = a; i >= b; i--) #define all(a) a.begin(), a.end() #define int long long #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e12; // 質問クエリ 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; } signed main(){ ios::sync_with_stdio(false); cin.tie(0); int a[3] = {10, 10, 10}; int l = -150, r = 150, MIN = INF; rep(i, 0, 25){ int m1 = (l * 2 + r + 2) / 3; int m2 = (l + 2 * r) / 3; int tmp1, tmp2; tmp1 = ask(m1, a[1], a[2]); tmp2 = ask(m2, a[1], a[2]); if(tmp1 < tmp2){ r = m2; }else{ l = m1; } if(tmp1 < MIN){ MIN = tmp1; a[0] = m1; } if(tmp2 < MIN){ MIN = tmp2; a[0] = m2; } } l = -150, r = 150, MIN = INF; rep(i, 0, 25){ int m1 = (l * 2 + r + 2) / 3; int m2 = (l + 2 * r) / 3; int tmp1, tmp2; tmp1 = ask(a[0], m1, a[2]); tmp2 = ask(a[0], m2, a[2]); if(tmp1 < tmp2){ r = m2; }else{ l = m1; } if(tmp1 < MIN){ MIN = tmp1; a[1] = m1; } if(tmp2 < MIN){ MIN = tmp2; a[1] = m2; } } l = -150, r = 150, MIN = INF; rep(i, 0, 25){ int m1 = (l * 2 + r + 2) / 3; int m2 = (l + 2 * r) / 3; int tmp1, tmp2; tmp1 = ask(a[0], a[1], m1); tmp2 = ask(a[0], a[1], m2); if(tmp1 < tmp2){ r = m2; }else{ l = m1; } if(tmp1 < MIN){ MIN = tmp1; a[2] = m1; } if(tmp2 < MIN){ MIN = tmp2; a[2] = m2; } } answer(a[0], a[1], a[2]); return 0; }