이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <algorithm>
#include <functional>
#include <queue>
using namespace std;
int *x, *y;
int n,p,q;
typedef pair<int,int> pp;
pp da[1000010];
bool tester(int bae){
int ind=0;
priority_queue<int> pq;
for(int i=0; i<p; ++i){
int cur=x[i];
while(ind<n && da[ind].first<cur){
pq.push(da[ind].second);
++ind;
}
for(int j=0; j<bae; ++j){
if(pq.size()) pq.pop();
else break;
}
}
for(;ind<n;++ind) pq.push(da[ind].second);
for(int i=q-1; i>=0; --i){
for(int j=0; j<bae; ++j){
if(pq.size() == 0) break;
int t=pq.top();
if(t<y[i]){
pq.pop();
} else break;
}
}
return pq.size() == 0u;
}
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
n=T;
p=A; q=B;
x=X; y=Y;
sort(x, x+p);
sort(y, y+q);
for(int i=0; i<n; ++i) da[i]={W[i], S[i]};
sort(da, da+n);
int L=0, R=T;
if(!tester(R)) return -1;
while(L+1<R){
int mid=(L+R)/2;
if(tester(mid)) R=mid;
else L=mid;
}
return R;
}
# | 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... |