#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);
printf("%d\n", answer);
return answer;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
636 KB |
Wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
52 ms |
7084 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 |
7252 KB |
Execution failed because the return code was nonzero |
2 |
Halted |
0 ms |
0 KB |
- |