結果

問題 No.2502 Optimization in the Dark
ユーザー baluteshihbaluteshih
提出日時 2023-10-13 22:22:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 201,332 KB
実行使用メモリ 25,580 KB
平均クエリ数 4.00
最終ジャッジ日時 2024-09-15 18:06:20
合計ジャッジ時間 5,580 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,196 KB
testcase_01 AC 23 ms
25,016 KB
testcase_02 AC 23 ms
24,812 KB
testcase_03 AC 23 ms
25,312 KB
testcase_04 AC 23 ms
25,580 KB
testcase_05 AC 23 ms
25,196 KB
testcase_06 AC 22 ms
25,196 KB
testcase_07 AC 22 ms
25,580 KB
testcase_08 AC 23 ms
24,812 KB
testcase_09 AC 24 ms
24,812 KB
testcase_10 AC 23 ms
25,196 KB
testcase_11 AC 23 ms
24,812 KB
testcase_12 AC 23 ms
25,440 KB
testcase_13 AC 23 ms
24,940 KB
testcase_14 AC 24 ms
25,196 KB
testcase_15 AC 24 ms
24,812 KB
testcase_16 AC 22 ms
24,812 KB
testcase_17 AC 24 ms
24,812 KB
testcase_18 AC 22 ms
25,196 KB
testcase_19 AC 23 ms
25,196 KB
testcase_20 AC 23 ms
25,196 KB
testcase_21 AC 24 ms
24,812 KB
testcase_22 AC 22 ms
24,812 KB
testcase_23 AC 24 ms
24,812 KB
testcase_24 AC 23 ms
25,196 KB
testcase_25 AC 23 ms
24,812 KB
testcase_26 AC 23 ms
25,196 KB
testcase_27 AC 23 ms
24,812 KB
testcase_28 AC 22 ms
25,196 KB
testcase_29 AC 24 ms
24,812 KB
testcase_30 AC 24 ms
25,324 KB
testcase_31 AC 24 ms
25,196 KB
testcase_32 AC 23 ms
24,940 KB
testcase_33 AC 24 ms
25,196 KB
testcase_34 AC 23 ms
25,568 KB
testcase_35 AC 24 ms
24,812 KB
testcase_36 AC 23 ms
25,196 KB
testcase_37 AC 24 ms
25,196 KB
testcase_38 AC 23 ms
24,812 KB
testcase_39 AC 23 ms
25,052 KB
testcase_40 AC 23 ms
24,812 KB
testcase_41 AC 24 ms
25,196 KB
testcase_42 AC 23 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define X first
#define Y second
#define SZ(a) ((int)a.size())
#define ALL(v) v.begin(), v.end()
#define pb push_back

int query(int a, int x, int b, int y) {
    cout << "? " << a << " " << x << " " << b << " " << y << endl;
    string s;
    cin >> s;
    return s == "Yes";
}

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    int n;
    cin >> n;
    int arr[3] = {1, 2, 3};
    for (int i = 0; i < 2; ++i)
        if (!query(arr[i], 2 * n, arr[i + 1], 2 * n))
            swap(arr[i], arr[i + 1]);
    if (!query(arr[0], n, arr[1], n))
        swap(arr[0], arr[1]);
    cout << "!";
    for (int i = 0; i < n; ++i)
        cout << " " << arr[1] << " " << arr[2];
    for (int i = 0; i < n; ++i)
        cout << " " << arr[0] << " " << arr[2];
    for (int i = n + 1; i <= 2 * n; ++i)
        cout << " " << arr[0] << " " << arr[1];
    cout << endl;
}
0