# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149390 | Cafe Maru (#200) | King of Chairs (FXCUP4_chairs) | C++17 | 154 ms | 10456 KiB |
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) {
int N = W.size();
return 0;
}
#include "vassal.h"
#include<bits/stdc++.h>
using namespace std;
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.insert({C[i],i});
}
}
int Maid(int W){
auto ret = S.lower_bound({W,0});
if (ret == S.end()) return -1;
int ans = ret->second;
S.erase(ret);
return ans;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |