답안 #112739

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
112739 2019-05-21T17:09:06 Z faishol27 사육제 (CEOI14_carnival) C++14
0 / 100
10 ms 504 KB
#include <bits/stdc++.h>
using namespace std;
 
#define pub push_back
 
int n, now, bef = 1;
int ans[155];
int tanya = 0;
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;
 		tanya++;
      
 		cin >> now;
 		if(now != bef){
 			q.pub(i);
 			ans[i] = now;
 		}else{
 			int le = 0,
 				ri = q.size()-1;
 			while(ri-le > 1){
 				int mid = (le+ri)/2;
              	cout << abs(le-mid)+2;
 				for(int j=le;j<=mid;j++)
 					cout << " " << q[j];
 				cout << " " << i << endl << flush;
 				tanya++;
              
 				int resp;
 				cin >> resp;
 				
 				if(resp == abs(le-mid)+1){
 					ri = mid;
 				}else le = mid + 1;
 			}
          
 			int resp;
			cout << "2 " << q[le] << " " << i << endl << flush;
 			tanya++;
	        cin >> resp;
			
          	if(resp == 2) ans[i] = ans[q[ri]];
          	else ans[i] = ans[q[le]];
 		}
 		
 		swap(now, bef);
 	}
 
  	assert(tanya < 600);
  
 	cout << 0;
 	for(int i=1;i<=n;i++)
 		cout << " " << ans[i];
 	cout << endl << flush;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 6 ms 456 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 256 KB Output is correct
2 Runtime error 8 ms 464 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 384 KB Output is correct
2 Correct 8 ms 256 KB Output is correct
3 Runtime error 7 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 256 KB Output is correct
2 Correct 9 ms 384 KB Output is correct
3 Correct 8 ms 256 KB Output is correct
4 Correct 4 ms 324 KB Output is correct
5 Runtime error 9 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 384 KB Output is correct
2 Runtime error 10 ms 424 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Halted 0 ms 0 KB -