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 <bits/stdc++.h>
using namespace std;
vector <int> a;
multiset <pair <int,int> > s;
int n;
long long BB;
void Init(long long B, std::vector<int> C){
BB = B;
n = C.size();
for(int i = 0;i < n;i++) s.insert({C[i],i});
//for(auto i : s) printf("%d %d\n",i.first,i.second);
// ToDo
}
int Maid(int w){
auto it = s.lower_bound({w,-1});
if(it == s.end()) return -1;
pair <int,int> it2 = *it;
//cout << it2.first << " " << it2.second << '\n';
s.erase(it);
return it2.second;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |