結果

問題 No.934 Explosive energy drink
ユーザー omochana2omochana2
提出日時 2019-12-04 22:54:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 2,246 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 147,876 KB
実行使用メモリ 24,348 KB
平均クエリ数 709.08
最終ジャッジ日時 2023-09-23 19:12:51
合計ジャッジ時間 7,773 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
24,264 KB
testcase_01 AC 198 ms
23,628 KB
testcase_02 AC 25 ms
23,604 KB
testcase_03 AC 111 ms
23,688 KB
testcase_04 AC 327 ms
23,436 KB
testcase_05 AC 24 ms
24,348 KB
testcase_06 AC 24 ms
24,024 KB
testcase_07 AC 26 ms
23,424 KB
testcase_08 AC 24 ms
23,616 KB
testcase_09 AC 25 ms
23,400 KB
testcase_10 AC 26 ms
24,048 KB
testcase_11 AC 25 ms
24,264 KB
testcase_12 AC 27 ms
24,036 KB
testcase_13 AC 30 ms
24,072 KB
testcase_14 AC 32 ms
23,652 KB
testcase_15 AC 108 ms
23,640 KB
testcase_16 AC 39 ms
24,012 KB
testcase_17 AC 54 ms
23,568 KB
testcase_18 AC 53 ms
24,036 KB
testcase_19 AC 84 ms
23,412 KB
testcase_20 AC 140 ms
24,012 KB
testcase_21 AC 142 ms
23,448 KB
testcase_22 AC 192 ms
24,276 KB
testcase_23 AC 193 ms
23,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}

0