結果

問題 No.934 Explosive energy drink
ユーザー MisterMister
提出日時 2020-04-21 19:38:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 78,364 KB
実行使用メモリ 25,476 KB
平均クエリ数 709.50
最終ジャッジ日時 2024-07-17 03:28:23
合計ジャッジ時間 5,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 200 ms
24,964 KB
testcase_02 AC 23 ms
24,580 KB
testcase_03 AC 108 ms
24,580 KB
testcase_04 AC 333 ms
25,220 KB
testcase_05 AC 24 ms
25,220 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 23 ms
25,476 KB
testcase_10 AC 24 ms
24,836 KB
testcase_11 AC 24 ms
24,580 KB
testcase_12 AC 25 ms
24,964 KB
testcase_13 AC 29 ms
24,964 KB
testcase_14 AC 31 ms
25,220 KB
testcase_15 AC 110 ms
25,476 KB
testcase_16 AC 38 ms
24,580 KB
testcase_17 AC 50 ms
25,220 KB
testcase_18 AC 55 ms
24,964 KB
testcase_19 AC 86 ms
24,964 KB
testcase_20 AC 141 ms
24,580 KB
testcase_21 AC 142 ms
25,220 KB
testcase_22 AC 196 ms
24,836 KB
testcase_23 AC 198 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>

bool query(const std::set<int>& xs, int ty) {
    std::cout << "?!"[ty] << " " << xs.size() << std::endl;
    for (auto x : xs) std::cout << x << " ";
    std::cout << std::endl;

    if (ty == 1) return true;

    bool res;
    std::cin >> res;
    return res;
}

void solve() {
    int n;
    std::cin >> n;

    std::set<int> xs;
    for (int i = 1; i <= n; ++i) xs.insert(i);

    for (int i = 1; i <= n; ++i) {
        xs.erase(i);
        if (!query(xs, 0)) xs.insert(i);
    }

    query(xs, 1);
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0