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 "robots.h"
#include <bits/stdc++.h>
#define x first
#define y second
#define all(v) v.begin(), v.end()
#define chkmin(a, b) a = min(a, b)
#define chkmax(a, b) a = max(a, b)
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef vector<vi> vvi;
typedef pair<int, int> pii;
typedef vector<pii> vii;
const int MAX_T = 1e6 + 1;
const int MAX_A = 5e4 + 1;
const int MAX_B = 5e4 + 1;
int a, b, t;
int x[MAX_A], y[MAX_B], w[MAX_T], s[MAX_T];
int ind[MAX_T];
bool Ok(int time) {
priority_queue<int> pq;
int index = 0;
for (int i = 0; i < a; i++) {
while (index < t && w[ind[index]] < x[i]) {
pq.push(s[ind[index++]]);
}
int x = time;
while (!pq.empty() && x--) pq.pop();
}
while (index < t) pq.push(s[ind[index++]]);
for (int i = 0; i < b && !pq.empty(); i++) {
if (pq.top() >= y[i]) return false;
int x = time;
while (!pq.empty() && x--) pq.pop();
}
return pq.empty();
}
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
a = A, b = B, t = T;
for (int i = 0; i < t; i++) {
ind[i] = i;
w[i] = W[i],
s[i] = S[i];
}
for (int i = 0; i < a; i++) x[i] = X[i];
for (int i = 0; i < b; i++) y[i] = Y[i];
sort(ind, ind + t, [&] (int i, int j) {
return w[i] < w[j];
});
sort(x, x + a);
sort(y, y + b, greater<int>());
int begin = 0, end = t + 1, mid;
while (begin < end) {
mid = (begin + end) >> 1;
if (Ok(mid)) {
end = mid;
} else begin = mid + 1;
}
if (end == t + 1) return -1;
return end;
}
# | 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... |