結果
| 問題 | No.934 Explosive energy drink | 
| コンテスト | |
| ユーザー |  omochana2 | 
| 提出日時 | 2019-12-04 22:54:24 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 336 ms / 2,000 ms | 
| コード長 | 2,246 bytes | 
| コンパイル時間 | 2,845 ms | 
| コンパイル使用メモリ | 163,656 KB | 
| 実行使用メモリ | 25,476 KB | 
| 平均クエリ数 | 709.08 | 
| 最終ジャッジ日時 | 2024-07-16 19:01:54 | 
| 合計ジャッジ時間 | 6,669 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 24 | 
ソースコード
#include <bits/stdc++.h>
#define ADD(a, b) a = (a + ll(b)) % mod
#define MUL(a, b) a = (a * ll(b)) % mod
#define MAX(a, b) a = max(a, b)
#define MIN(a, b) a = min(a, b)
#define rep(i, a, b) for(int i = int(a); i < int(b); i++)
#define rer(i, a, b) for(int i = int(a) - 1; i >= int(b); i--)
#define all(a) (a).begin(), (a).end()
#define sz(v) (int)(v).size()
#define pb push_back
#define sec second
#define fst first
#define debug(fmt, ...) Debug(__LINE__, ":", fmt, ##__VA_ARGS__)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<int, pi> ppi;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vl> mat;
typedef complex<double> comp;
void Debug() {cerr << '\n'; }
template<class FIRST, class... REST>void Debug(FIRST arg, REST... rest){
	cerr<<arg<<" ";Debug(rest...);}
template<class T>ostream& operator<<(ostream& out,const vector<T>& v) {
	out<<"[";if(!v.empty()){rep(i,0,sz(v)-1)out<<v[i]<<", ";out<<v.back();}out<<"]";return out;}
template<class S, class T>ostream& operator<<(ostream& out,const pair<S, T>& v){
	out<<"("<<v.first<<", "<<v.second<<")";return out;}
const int MAX_N = 500010;
const int MAX_V = 100010;
const double eps = 1e-6;
const ll mod = 1000000007;
const int inf = (1 << 30) - 1;
const ll linf = 1LL << 60;
const double PI = 3.14159265358979323846;
mt19937 rng; //use it by rng() % mod, shuffle(all(vec), rng)
///////////////////////////////////////////////////////////////////////////////////////////////////
int ask(vi& vec) {
	if(sz(vec) < 2) return 0;
	cout << "? " << sz(vec) << endl;
	rep(i, 0, sz(vec)) {
		cout << vec[i] + 1 << " ";
	}
	cout << endl;
	int a; cin >> a;
	return a;
}
int N;
int cand[MAX_N];
void solve() {
	cin >> N;
	rep(i, 0, N) cand[i] = 1;
	rep(i, 0, N) {
		vi vec;
		rep(j, 0, N) {
			if(cand[j] && j != i) vec.pb(j);
		}
		if(ask(vec)) cand[i] = 0;
	}
	cout << "! " << accumulate(cand, cand + N, 0) << endl;
	rep(i, 0, N) {
		if(!cand[i]) continue;
		cout << i + 1 << " ";
	}
	cout << endl;
}
uint32_t rd() {
	uint32_t res;
#ifdef __MINGW32__
	asm volatile("rdrand %0" :"=a"(res) ::"cc");
#else
	res = std::random_device()();
#endif
	return res;
}
int main() {
	solve();
	return 0;
}
            
            
            
        