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 <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <map>
#include <queue>
#include <set>
#include <iomanip>
#include <deque>
#include <cassert>
#include <ctime>
#include <cstring>
#include <cstdlib>
#include <chrono>
#include <ctime>
#include <random>
#include <stack>
#include <unordered_set>
#include <unordered_map>
#include <iterator>
#include <climits>
#include "robots.h"
using namespace std;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef long long ll;
typedef long double ld;
#define INF 2001001001
vector<pair<int,int>>v;
bool taken[1000001];
bool check(int A, int B, int T, int X[], int Y[], int W[], int S[], int t){
for (int i=0;i<T;i++)
taken[i]=false;
int ind=0;
priority_queue<pair<int,int>>q;
for (int j=0;j<=(int)v.size();j++){
while (ind<B && (j==(int)v.size() || v[j].first>=Y[ind])){
int left=t;
while (!q.empty() && left>0){
taken[q.top().second]=true;
q.pop();
left--;
}
ind++;
}
if (ind>=B || j==(int)v.size())
break;
q.push({v[j].second,j});
}
vector<int>vW;
for (int i=0;i<T;i++)
if (!taken[i])
vW.push_back(v[i].second);
sort(vW.begin(),vW.end());
int avai=0;
ind=0;
for (int j=0;j<=(int)vW.size();j++){
while (ind<A && (j==(int)vW.size() || vW[j]>=X[ind])){
avai-=min(t,avai);
ind++;
}
if (j==(int)vW.size())
break;
avai++;
}
if (avai==0)
return true;
else
return false;
}
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]){
sort(X,X+A);
sort(Y,Y+B);
for (int i=0;i<T;i++)
v.push_back({S[i],W[i]});
sort(v.begin(),v.end());
int MAX=T+1;
int low=0,high=MAX,mid;
while (low+1<high){
mid=(low+high)/2;
if (check(A,B,T,X,Y,W,S,mid))
high=mid;
else
low=mid;
}
if (high==MAX)
return -1;
else
return high;
}
# | 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... |