結果

問題 No.594 壊れた宝物発見機
ユーザー finefine
提出日時 2017-11-10 23:17:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,906 bytes
コンパイル時間 1,880 ms
コンパイル使用メモリ 173,084 KB
実行使用メモリ 25,604 KB
平均クエリ数 124.60
最終ジャッジ日時 2024-07-16 14:31:57
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
24,836 KB
testcase_01 AC 118 ms
25,220 KB
testcase_02 WA -
testcase_03 AC 112 ms
24,856 KB
testcase_04 WA -
testcase_05 AC 114 ms
24,580 KB
testcase_06 AC 118 ms
25,220 KB
testcase_07 AC 122 ms
24,836 KB
testcase_08 AC 120 ms
25,220 KB
testcase_09 AC 120 ms
25,232 KB
testcase_10 AC 120 ms
24,592 KB
testcase_11 AC 120 ms
24,848 KB
testcase_12 AC 118 ms
24,976 KB
testcase_13 AC 111 ms
25,232 KB
testcase_14 AC 119 ms
25,488 KB
testcase_15 AC 123 ms
24,848 KB
testcase_16 AC 113 ms
25,232 KB
testcase_17 AC 114 ms
24,848 KB
testcase_18 AC 115 ms
24,976 KB
testcase_19 AC 113 ms
24,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:82:11: warning: 'ap.Point::z' may be used uninitialized [-Wmaybe-uninitialized]
   82 |     answer(ap.x, ap.y, ap.z);
      |     ~~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:54:11: note: 'ap.Point::z' was declared here
   54 |     Point ap;
      |           ^~
main.cpp:82:11: warning: 'ap.Point::y' may be used uninitialized [-Wmaybe-uninitialized]
   82 |     answer(ap.x, ap.y, ap.z);
      |     ~~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:54:11: note: 'ap.Point::y' was declared here
   54 |     Point ap;
      |           ^~
main.cpp:82:11: warning: 'ap.Point::x' may be used uninitialized [-Wmaybe-uninitialized]
   82 |     answer(ap.x, ap.y, ap.z);
      |     ~~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:54:11: note: 'ap.Point::x' was declared here
   54 |     Point ap;
      |           ^~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int ax = -25, 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, vmax = 1145141919;
    int cnt = 0;
    Point ap;
    while (judge(v) && cnt < 192) {
        vector<int> ans(8);
        for (int i = 0; i < 8; i++) {
            ans[i] = ask(v[i].x, v[i].y, v[i].z);
            cnt++;
        }
        int ti = 0;
        for (int i = 1; i < 8; i++) {
            if (ans[i] < ans[ti]) {
                ti = i;
            }
        }
        idx = ti;
        if (ans[idx] < vmax) {
            vmax = ans[idx];
            ap.x = v[idx].x;
            ap.y = v[idx].y;
            ap.z = v[idx].z;
        }
        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(ap.x, ap.y, ap.z);
    return 0;
}
0