답안 #92188

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
92188 2019-01-01T21:42:19 Z faishol27 사육제 (CEOI14_carnival) C++14
0 / 100
1000 ms 376 KB
#include <bits/stdc++.h>
using namespace std;

#define pub push_back

int n, now, bef = 1;
int ans[155];
vector<int>q;

int main(){
 	cin >> n;
 	
 	ans[1] = 1;
 	q.pub(1);
 	for(int i=2;i<=n;i++){
 		cout << q.size()+1;
 		for(int elm:q)
 			cout << " " << elm;
 		cout << " " << i << endl << flush;
 		
 		cin >> now;
 		if(now != bef){
 			q.pub(i);
 			ans[i] = now;
 		}else{
 			int akar = sqrt((double)bef)+1,
 				frn = -1,
 				sz = q.size();
 				
 			int le = 0,
 				ri = min(le+akar-1, sz-1);
 			while(frn == -1){
 				cout << abs(le-ri)+2;
 				for(int j=le;j<=ri;j++)
 					cout << " " << j;
 				cout << " " << i << endl << flush;
 				
 				int resp;
 				cin >> resp;
 				
 				if(resp == abs(le-ri)+1){
 					for(int j=le;j<=ri && frn == -1;j++){
 						cout << "2 " << j << " " << i << endl << flush;
 						int tmp;
 						cin >> tmp;
 						if(tmp == 1) frn = j;
 					}
 				}
 				
 				le = ri+1;
 				ri = min(le+akar-1, sz-1);
 			}
 			
 			ans[i] = ans[frn];
 		}
 		
 		swap(now, bef);
 	}
 	
 	cout << 0;
 	for(int i=1;i<=n;i++)
 		cout << " " << ans[i];
 	cout << endl << flush;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3003 ms 248 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3021 ms 376 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3019 ms 248 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3057 ms 376 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3051 ms 376 KB Time limit exceeded
2 Halted 0 ms 0 KB -