이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
//#include "grader.cpp"
#include <bits/stdc++.h>
using namespace std;
vector <pair <int,int> > toy;
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
sort(X, X+A);
sort(Y, Y+B);
if(A==0){
swap(X,Y);
swap(W,S);
swap(A,B);
}
toy.resize(T);
for(int i = 0 ; i < T ; i++){
toy[i].first = W[i];
toy[i].second = S[i];
if(W[i]>= X[A-1] && S[i]>=Y[B-1])
return -1;
}
sort(toy.begin(), toy.end() );
if(B==0){
if(X[A-1] <= toy[T-1].first )
return -1;
int res = (T + A -1 )/ A;
for(int i = 0; i < A - 1 ;i++){
if( X[i] <= toy[0].first){
res = max ( res, (T + ( A - i- 1) -1 )/ (A - i -1 ));
}
int ind = upper_bound(toy.begin(), toy.end(), make_pair (X[i], 2000000002)) - toy.begin() ;
res = max ( res, (T - ind + (A-i-1) - 1) / ( A - i - 1));
}
return res;
}
int l = 1, r = T;
int ans = T;
while(r - l > 0){
int mid = (l + r) / 2;
priority_queue<int> vec, vec1;
int cnt = 0;
for(int i = 0 ; i < A ; i++){
int sz = 0;
while( cnt < T && X[i] > toy[cnt].first){
vec.push(toy[cnt].second);
cnt++;
}
while(vec.size()> 0 && sz<mid){
vec.pop();
sz++;
}
if(i==A-1){
while(cnt < T){
vec.push(toy[cnt].second);
cnt++;
}
}
}
for(int i = B-1 ; i>= 0; i--){
int sz =0;
while(!vec.empty() && sz < mid && vec.top()< Y[i] ){
vec.pop();
sz++;
}
}
if(vec.size()==0 ){
r = mid;
ans = mid;
}
else{
l = mid + 1;
}
}
return ans;
}
/*
3 2 10
6 2 9
4 7
4 6
8 5
2 3
7 9
1 8
5 1
3 3
8 7
7 6
10 5
*/
# | 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... |