結果
問題 | No.594 壊れた宝物発見機 |
ユーザー | fine |
提出日時 | 2017-11-10 23:01:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,680 bytes |
コンパイル時間 | 1,472 ms |
コンパイル使用メモリ | 172,032 KB |
実行使用メモリ | 44,724 KB |
平均クエリ数 | 97.90 |
最終ジャッジ日時 | 2024-07-16 14:29:22 |
合計ジャッジ時間 | 7,210 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
24,836 KB |
testcase_01 | AC | 103 ms
24,836 KB |
testcase_02 | WA | - |
testcase_03 | AC | 99 ms
24,580 KB |
testcase_04 | WA | - |
testcase_05 | AC | 104 ms
24,836 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 103 ms
25,232 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int ax = -100, ay = 25, az = 35; // 質問クエリ int ask(int x, int y, int z) { int d; cout << "?" << " " << x << " " << y << " " << z << endl; cin >> d; return d;//(ax - x) * (ax - x) + (ay - y) * (ay - y) + (az - z) * (az - z); } // 回答クエリ void answer(int x, int y, int z) { cout << "!" << " " << x << " " << y << " " << z << endl; } struct Point { int x; int y; int z; }; bool judge(vector<Point>& v) { return v[1].x - v[0].x > 1 || v[2].y - v[0].y > 1 || v[4].z - v[0].z > 0; } int mid(int x, int y) { int sum = x + y; if (sum < 0) return (sum - 1) / 2; else return (sum + 1) / 2; } int main() { cin.tie(0); ios::sync_with_stdio(false); vector<Point> v; for (int i = 0; i < 8; i++) { int x, y, z; if (i & 1) x = 100; else x = -100; if (i & 2) y = 100; else y = -100; if (i & 4) z = 100; else z = -100; v.push_back((Point){x, y, z}); } int idx = -1; while (judge(v)) { vector<int> ans(8); for (int i = 0; i < 8; i++) { ans[i] = ask(v[i].x, v[i].y, v[i].z); } int ti = 0; for (int i = 1; i < 8; i++) { if (ans[i] < ans[ti]) { ti = i; } } idx = ti; Point p = v[idx]; for (int i = 0; i < 8; i++) { if (idx == i) continue; v[i].x = mid(v[i].x, v[idx].x); v[i].y = mid(v[i].y, v[idx].y); v[i].z = mid(v[i].z, v[idx].z); } } answer(v[idx].x, v[idx].y, v[idx].z); return 0; }