답안 #944073

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
944073 2024-03-12T08:06:01 Z teacup 카멜레온의 사랑 (JOI20_chameleon) C++17
0 / 100
1 ms 600 KB
#include "chameleon.h"
#include <bits/stdc++.h>
using namespace std;

//#define int long long
#define ii pair<int,int>
typedef vector<int> vi;
#define iii tuple<int,int,int>
typedef vector<ii> vii;
typedef vector<iii> viii;
typedef map<int,int> mii;

#ifndef debug 
    #define cerr if (0) cerr
#endif

void Solve(int N) {
	vector<int> V;
	for(int i=1; i<=2*N; i++){
		V.push_back(i);
	}
	
	while(!V.empty()){
		int L=0, R=V.size()-1, M, a, b;
		while(R>=L){
			M = (L+R)/2;
			a = Query(vector(V.begin(),V.begin()+M));
			b = Query(vector(V.begin()+1,V.begin()+M));
			if (a==b) R = M;
			else L = M+1;
		}
		a = V[0]; b = V[L];
		V.erase(V.begin());V.erase(V.begin()+L);
		Answer(a,b);
	}
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 600 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -