This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "king.h"
long long SendInfo(std::vector<int> W, std::vector<int> C) {
return 0;
}
#include "vassal.h"
#include <set>
using namespace std;
long long BB;
set<pair<int, int> > s;
void Init(long long B, std::vector<int> C){
int N = C.size();
for (int i = 0; i < N; i++) {
s.emplace(C[i], i);
}
}
int Maid(int W){
auto it = s.lower_bound({W, -1});
if (it == s.end()) {
return -1;
}
const int res = it->second;
s.erase(it);
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |