結果

問題 No.934 Explosive energy drink
ユーザー takumi152takumi152
提出日時 2019-11-29 21:58:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 1,057 ms
コンパイル使用メモリ 99,592 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:20:34
合計ジャッジ時間 5,519 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,940 KB
testcase_01 AC 317 ms
24,580 KB
testcase_02 AC 23 ms
24,836 KB
testcase_03 AC 165 ms
25,220 KB
testcase_04 AC 327 ms
24,580 KB
testcase_05 AC 23 ms
24,964 KB
testcase_06 AC 21 ms
24,836 KB
testcase_07 AC 23 ms
24,964 KB
testcase_08 AC 22 ms
25,220 KB
testcase_09 AC 22 ms
24,836 KB
testcase_10 AC 23 ms
24,836 KB
testcase_11 AC 22 ms
24,964 KB
testcase_12 AC 25 ms
24,836 KB
testcase_13 AC 28 ms
24,824 KB
testcase_14 AC 27 ms
24,824 KB
testcase_15 AC 103 ms
24,580 KB
testcase_16 AC 47 ms
24,820 KB
testcase_17 AC 65 ms
24,580 KB
testcase_18 AC 66 ms
24,824 KB
testcase_19 AC 130 ms
24,580 KB
testcase_20 AC 205 ms
24,964 KB
testcase_21 AC 218 ms
24,836 KB
testcase_22 AC 318 ms
25,220 KB
testcase_23 AC 313 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>
#include <cstdlib>
#include <queue>
#include <map>

using namespace std;

typedef long long int ll;
typedef pair<int, int> Pii;

const ll mod = 1000000007;

bool ask(vector<int> &query) {
  sort(query.begin(), query.end());
  cout << "? " << query.size() << endl;
  for (auto &x: query) cout << x << " ";
  cout << endl;
  int response;
  cin >> response;
  return response;
}

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

  int n;
  cin >> n;

  vector<bool> explosive(n);
  for (int i = 0; i < n; i++) {
    vector<int> query;
    for (int j = 0; j < n; j++) {
      if (i == j) continue;
      query.push_back(j+1);
    }
    explosive[i] = !ask(query);
  }

  int k = 0;
  for (auto x: explosive) {
    if (x) k++;
  }

  cout << "! " << k << endl;
  for (int i = 0; i < n; i++) {
    if (explosive[i]) cout << i+1 << " ";
  }
  cout << endl;

  return 0;
}
0