結果

問題 No.2962 Sum Bomb Bomber
ユーザー ldsybldsyb
提出日時 2024-11-16 15:58:20
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,780 bytes
コンパイル時間 5,336 ms
コンパイル使用メモリ 308,144 KB
実行使用メモリ 25,448 KB
平均クエリ数 187.09
最終ジャッジ日時 2024-11-16 15:58:57
合計ジャッジ時間 14,972 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
24,824 KB
testcase_01 AC 101 ms
24,824 KB
testcase_02 AC 96 ms
24,440 KB
testcase_03 AC 96 ms
25,208 KB
testcase_04 AC 106 ms
24,568 KB
testcase_05 AC 95 ms
25,196 KB
testcase_06 AC 81 ms
25,208 KB
testcase_07 AC 96 ms
24,824 KB
testcase_08 AC 95 ms
24,824 KB
testcase_09 AC 94 ms
24,824 KB
testcase_10 AC 95 ms
24,824 KB
testcase_11 AC 91 ms
24,824 KB
testcase_12 AC 93 ms
24,824 KB
testcase_13 AC 84 ms
24,568 KB
testcase_14 AC 111 ms
25,208 KB
testcase_15 AC 78 ms
25,208 KB
testcase_16 AC 92 ms
24,824 KB
testcase_17 AC 95 ms
25,208 KB
testcase_18 AC 95 ms
24,824 KB
testcase_19 AC 92 ms
24,824 KB
testcase_20 AC 89 ms
24,824 KB
testcase_21 AC 79 ms
25,208 KB
testcase_22 AC 91 ms
25,076 KB
testcase_23 AC 105 ms
25,208 KB
testcase_24 AC 94 ms
24,824 KB
testcase_25 AC 84 ms
24,568 KB
testcase_26 AC 94 ms
24,824 KB
testcase_27 AC 100 ms
24,824 KB
testcase_28 AC 100 ms
24,568 KB
testcase_29 AC 91 ms
24,824 KB
testcase_30 AC 89 ms
25,208 KB
testcase_31 AC 79 ms
24,824 KB
testcase_32 AC 104 ms
25,064 KB
testcase_33 AC 95 ms
24,568 KB
testcase_34 AC 102 ms
25,208 KB
testcase_35 AC 92 ms
25,160 KB
testcase_36 AC 94 ms
25,208 KB
testcase_37 AC 104 ms
24,812 KB
testcase_38 AC 100 ms
24,824 KB
testcase_39 AC 100 ms
24,824 KB
testcase_40 AC 101 ms
25,160 KB
testcase_41 AC 101 ms
25,208 KB
testcase_42 AC 105 ms
25,448 KB
testcase_43 AC 81 ms
25,208 KB
testcase_44 AC 98 ms
24,824 KB
testcase_45 AC 98 ms
25,208 KB
testcase_46 AC 98 ms
25,208 KB
testcase_47 AC 97 ms
24,824 KB
testcase_48 AC 96 ms
25,208 KB
testcase_49 AC 98 ms
25,208 KB
testcase_50 AC 102 ms
24,824 KB
testcase_51 AC 81 ms
25,196 KB
testcase_52 AC 96 ms
25,196 KB
testcase_53 AC 78 ms
24,812 KB
testcase_54 AC 79 ms
24,556 KB
testcase_55 AC 79 ms
24,428 KB
testcase_56 AC 79 ms
24,812 KB
testcase_57 AC 98 ms
25,196 KB
testcase_58 AC 101 ms
24,812 KB
testcase_59 AC 97 ms
24,556 KB
testcase_60 AC 102 ms
25,196 KB
testcase_61 AC 99 ms
24,812 KB
testcase_62 AC 92 ms
25,184 KB
testcase_63 WA -
testcase_64 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

int main()
{
    int64_t n;
    cin >> n;

    int64_t x = [&]
    {
        int64_t l = -100000000, r = 100000000;
        while (2 < abs(l - r))
        {
            int64_t ml = (2 * l + r) / 3;
            int64_t mr = (l + 2 * r) / 3;

            int64_t dl, dr;
            cout << 1 << ' ' << ml << ' ' << 0 << endl;
            cin >> dl;
            cout << 1 << ' ' << mr << ' ' << 0 << endl;
            cin >> dr;

            if (dl < dr)
            {
                r = mr;
            }
            else
            {
                l = ml;
            }
        }

        return l + 1;
    }();

    int64_t y = [&]
    {
        int64_t l = -100000000, r = 100000000;
        while (2 < abs(l - r))
        {
            int64_t ml = (2 * l + r) / 3;
            int64_t mr = (l + 2 * r) / 3;

            int64_t dl, dr;
            cout << 1 << ' ' << 0 << ' ' << ml << endl;
            cin >> dl;
            cout << 1 << ' ' << 0 << ' ' << mr << endl;
            cin >> dr;

            if (dl < dr)
            {
                r = mr;
            }
            else
            {
                l = ml;
            }
        }

        return l + 1;
    }();

    int64_t tmp = (1LL << 60);
    for (int64_t nx : {x, x + 1})
    {
        for (int64_t ny : {y, y + 1})
        {
            cout << 1 << ' ' << nx << ' ' << ny << endl;
            int64_t d;
            cin >> d;
            if (d < tmp)
            {
                x = nx;
                y = ny;
                tmp = d;
            }
        }
    }

    cout << 2 << ' ' << x << ' ' << y << endl;

    return 0;
}
0