結果

問題 No.594 壊れた宝物発見機
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-11-01 12:30:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,281 bytes
コンパイル時間 2,599 ms
コンパイル使用メモリ 200,844 KB
実行使用メモリ 44,456 KB
最終ジャッジ日時 2024-11-01 12:30:53
合計ジャッジ時間 9,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int query(int x, int y, int z) {
    cout << x << " " << y << " " << z << endl;
    int res;
    cin >> res;
    return res;
}
void answer(int x, int y, int z) { cout << x << " " << y << " " << z << endl; }
int main() {
    fast_io();
    int a[3] = {0, 0, 0};
    for (int i = 0; i < 3; i++) {
        int lo = -100, hi = 100;
        int lo_a[3] = {a[0], a[1], a[2]};
        int hi_a[3] = {a[0], a[1], a[2]};
        lo_a[i] = lo, hi_a[i] = hi;
        int lo_d = query(lo_a[0], lo_a[1], lo_a[2]),
            hi_d = query(hi_a[0], hi_a[1], hi_a[2]);
        while (lo + 1 < hi) {
            int m1 = lo + (hi - lo) / 3;
            int m2 = hi - (hi - lo) / 3;
            int m1_a[3] = {a[0], a[1], a[2]};
            int m2_a[3] = {a[0], a[1], a[2]};
            m1_a[i] = m1, m2_a[i] = m2;
            int m1_d = query(m1_a[0], m1_a[1], m1_a[2]),
                m2_d = query(m2_a[0], m2_a[1], m2_a[2]);
            if (m1_d < m2_d) {
                hi = m2;
                hi_d = m2_d;
            } else {
                lo = m1;
                lo_d = m1_d;
            }
        }
        a[i] = lo;
    }
    answer(a[0], a[1], a[2]);
}
0