이 제출은 이전 버전의 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);
vector<pair<int, int>> v;
for (int i = 0; i < t; ++i) v.push_back({w[i], s[i]});
sort(v.begin(), v.end());
int l = 1, r = t;
while (l <= r){
int mid = (l + r) / 2;
int pt = 0;
priority_queue<int> pq;
for (int i = 0; i < a; ++i){
while (pt < t && v[pt].first < x[i]) pq.push(v[pt++].second);
for (int j = 0; j < mid; ++j){
if (pq.empty()) break;
pq.pop();
}
}
while (pt < t) pq.push(v[pt++].second);
for (int i = 0; i < b; ++i){
for (int j = 0; j < mid; ++j){
if (pq.empty() || pq.top() >= y[i]) break;
//cerr << pq.top() << "\n";
pq.pop();
}
}
if (pq.empty()) 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... |