結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | Pachicobue |
提出日時 | 2017-11-10 23:14:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,813 bytes |
コンパイル時間 | 1,822 ms |
コンパイル使用メモリ | 169,596 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 100.30 |
最終ジャッジ日時 | 2024-07-16 14:31:51 |
合計ジャッジ時間 | 5,615 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 111 ms
24,964 KB |
testcase_02 | AC | 114 ms
25,476 KB |
testcase_03 | AC | 114 ms
25,220 KB |
testcase_04 | AC | 116 ms
25,220 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 112 ms
24,848 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 116 ms
25,232 KB |
testcase_13 | AC | 112 ms
24,592 KB |
testcase_14 | AC | 115 ms
25,232 KB |
testcase_15 | AC | 114 ms
25,232 KB |
testcase_16 | AC | 120 ms
25,232 KB |
testcase_17 | AC | 113 ms
24,976 KB |
testcase_18 | AC | 113 ms
24,976 KB |
testcase_19 | AC | 113 ms
25,232 KB |
ソースコード
#include <bits/stdc++.h> #define show(x) cerr << #x << " = " << x << endl using namespace std; using ll = long long; template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) { os << "sz:" << v.size() << "\n["; for (const auto& p : v) { os << p << ","; } os << "]\n"; return os; } template <typename S, typename T> ostream& operator<<(ostream& os, const pair<S, T>& p) { os << "(" << p.first << "," << p.second << ")"; return os; } constexpr ll MOD = (ll)1e9 + 7LL; template <typename T> constexpr T INF = numeric_limits<T>::max() / 64; ll ans[3]; ll ask(const int x, const int y, const int z) { static int q = 0; q++; if (q == 201) { cerr << "feuwfhiwf" << endl; } cout << "? " << x << " " << y << " " << z << endl; ll i; cin >> i; // return (ans[0] - x) * (ans[0] - x) + (ans[1] - y) * (ans[1] - y) + (ans[2] - z) * (ans[2] - z); return i; } int main() { // for (int i = 0; i < 3; i++) { // cin >> ans[i]; // } vector<ll> sup(3, 150); vector<ll> inf(3, -150); for (int i = 0; i < 3; i++) { while (inf[i] < sup[i]) { const ll ainf = (i == 0) ? ask(inf[i], 0, 0) : (i == 1) ? ask(0, inf[i], 0) : ask(0, 0, inf[i]); const ll asup = (i == 0) ? ask(sup[i], 0, 0) : (i == 1) ? ask(0, sup[i], 0) : ask(0, 0, sup[i]); if (asup == ainf) { inf[i] = (inf[i] + sup[i]) / 2; sup[i] = inf[i]; } else if (asup < ainf) { inf[i] = (inf[i] + sup[i]) / 2; } else { sup[i] = (inf[i] + sup[i] + 1) / 2; } } } cout << "!"; for (int i = 0; i < 3; i++) { cout << " " << inf[i]; } cout << endl; return 0; }