이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
int putaway(int a, int b, int t, int *x, int *y, int *w, int *s) {
std::sort(x, x + a);
std::sort(y, y + b);
std::vector<int> ord(t); iota(ord.begin(), ord.end(), 0);
std::sort(ord.begin(), ord.end(), [&](int i, int j) {
return std::tie(w[i], s[i]) < std::tie(w[j], s[j]);
});
auto check = [&](int k) {
std::priority_queue<int> pq;
int j = 0;
for (int i = 0; i < a; ++i) {
while (j < t && w[ord[j]] < x[i]) {
pq.push(s[ord[j++]]);
}
int could = k;
while (pq.size() && could) {
pq.pop();
--could;
}
}
while (j < t) {
pq.push(s[ord[j++]]);
}
for (int i = b - 1; i >= 0; --i) {
int could = k;
while (pq.size() && pq.top() < y[i] && could) {
pq.pop();
--could;
}
}
return !pq.size();
};
int l = 1, r = t, res = -1;
while (l <= r) {
int m = (l + r) / 2;
if (check(m)) {
res = m;
r = m - 1;
} else {
l = m + 1;
}
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |