답안 #1084326

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1084326 2024-09-05T22:05:26 Z 4QT0R 사육제 (CEOI14_carnival) C++17
0 / 100
7 ms 596 KB
#include <bits/stdc++.h>
using namespace std;

int odp[152];

int comm(int l, int r, int ind){
	if (l==r)return l;
	int md=(l+r)/2;

	int query;
	cout << md-l+2 << ' ';
	for (int j = l; j<=md; j++)cout << j << ' ';
	cout << ind << endl;
	cin >> query;
	if (query<(md-l+2))return comm(l,md,ind);
	else return comm(md+1,r,ind);
}

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

	int n;
	cin >> n;
	odp[1]=1;
	int spoj=1;
	int k;
	for (int i = 2; i<=n; i++){
		cout << i << ' ';
		for (int j = 1; j<=i; j++)cout << j << ' ';
		cout << endl;
		cin >> k;
		if (k>spoj){
			odp[i]=++spoj;
			continue;
		}
		odp[i]=comm(1,i-1,i);
	}
	for (int i = 1; i<=n; i++)cout << odp[i] << ' ';
	cout << '\n';
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 344 KB Same person came twice to the party.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 344 KB Same person came twice to the party.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 344 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 596 KB Same person came twice to the party.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 344 KB Same person came twice to the party.
2 Halted 0 ms 0 KB -