Submission #153338

# Submission time Handle Problem Language Result Execution time Memory
153338 2019-09-13T13:20:45 Z phpark King of Chairs (FXCUP4_chairs) C++17
0 / 100
54 ms 7184 KB
#include "king.h"
using namespace std;
#include "king.h"
using namespace std;
long long SendInfo(vector <int> W, vector <int> C)
{
	return 1;
}
#include <set>
#include <vector>
#include <algorithm>
#include "vassal.h"
using namespace std;
static set <int> sit;
static vector <int> chair;
static int N;
void Init(long long B, vector <int> C)
{
    N = C.size();
    sort(C.begin(), C.end());
    chair.resize(N);
 	chair = C;
    
	for (int i = 0; i < N; i++) sit.insert(i);
}
 
int Maid(int w)
{
	int right = 0, left = 0, mid = 0, res = 0;
	while (right <= left) {
		mid = (right + left) / 2;
		if (chair[mid] > w) {
			right = mid - 1;
			if (right <= left) {
				res = mid;
				break;
			}
		}
		else if (chair[mid] < w) {
			left = mid + 1;
			if (right <= left) {
				res = right;
				break;
			}
		}
		else {
			res = mid;
			break;
		}
	}
	
	auto itr = sit.upper_bound(res);
	if (itr == sit.end()) {
		return -1;
	}
	else {
		int answer = *itr;
		sit.erase(itr);
			
		return answer;
	}
}
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 644 KB Wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 54 ms 7100 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 54 ms 7184 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -