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;
set<pair<int,int>> sets;
void Init(long long B, std::vector<int> C){
int i=0;
for(auto &x: C) sets.insert(make_pair(x,i++));
}
int Maid(int W){
auto it = sets.lower_bound(make_pair(W,0));
if(it == sets.end()) return -1;
int v=it->second; sets.erase(it);
return v;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |