이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
using namespace std;
int putaway(int a, int b, int t, int x[], int y[], int w[], int s[]) {
int ans = -1;
sort(x, x + a);
sort(y, y + b);
reverse(y, y + b);
int l = 1, r = t;
while (l <= r){
int mid = (l + r) / 2;
int pt = 0;
multiset<int> st;
for (int i = 0; i < a; ++i){
while (pt < t && w[pt] < x[i]) st.insert(s[pt++]);
for (int j = 0; j < mid; ++j){
if (st.empty()) break;
st.erase(--st.end());
}
}
while (pt < t) st.insert(s[pt++]);
int cur = 0;
while (!st.empty()){
if (cur == mid) break;
cur++;
for (int i = 0; i < b; ++i){
auto it = st.lower_bound(y[i]);
if (it == st.begin()) break;
it--;
st.erase(it);
}
}
if (cur <= mid) ans = mid, r = mid - 1;
else l = mid + 1;
}
return ans;
}
# | 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... |