# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
479784 | arujbansal | 로봇 (IOI13_robots) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "robots.h"
using namespace std;
int putaway(int A, int B, int T, vector<int> X, vector<int> Y, vector<int> W, vector<int> S) {
sort(W.begin(), W.end());
sort(S.begin(), S.end(), greater<>());
vector<pair<int, int>> toys(T);
for (int i = 0; i < T; i++)
toys[i] = make_pair(W[i], S[i]);
sort(X.begin(), X.end());
sort(Y.begin(), Y.end());
int low = 0, high = T, ans = T + 5;
while (low <= high) {
int allowed = low + (high - low) / 2;
priority_queue<int> pq;
for (int i = 0, j = 0, can_pick = 0; i < A; i++, can_pick += allowed) {
while (j < T && toys[j].first < W[i])
pq.push(toys[j++].second);
while (!pq.empty() && can_pick > 0) {
pq.pop();
can_pick--;
}
}
for (int i = 0, can_pick = 0; i < B; i++, can_pick += allowed) {
while (!pq.empty() && pq.top() < B[i] && can_pick > 0) {
pq.pop();
can_pick--;
}
}
if (pq.empty()) {
high = allowed - 1;
ans = allowed;
} else low = allowed + 1;
}
return (ans < T + 5 ? ans : -1);
}