# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
56052 | win11905 | 로봇 (IOI13_robots) | C++11 | 3063 ms | 9124 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
#define pii pair<int, int>
#define x first
#define y second
using namespace std;
const int INF = 1e6+1;
const int INF2 = 2e9+1;
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
sort(X, X + A), sort(Y, Y + B);
int l = 1, r = 1e6+1;
while(l < r) {
int m = l + r >> 1;
vector<pii> V;
for(int i = 0; i < T; ++i) V.emplace_back(W[i], S[i]);
sort(V.begin(), V.end());
for(int i = 0; i < A; ++i) {
int z = m;
while(z) {
bool st = true;
for(int j = V.size() - 1; ~j; --j) {
if(V[j].x < X[i]) {
V.erase(V.begin() + j);
st = false;
z--;
break;
}
}
if(st) break;
}
}
sort(V.begin(), V.end(), [&](const pii &a, const pii &b) { return a.y < b.y; });
for(int i = 0; i < B; ++i) {
int z = m;
while(z) {
bool st = true;
for(int j = V.size() - 1; ~j; --j) {
if(V[j].y < Y[i]) {
V.erase(V.begin() + j);
st = false;
z--;
break;
}
}
if(st) break;
}
}
if(V.empty()) r = m;
else l = m+1;
}
if(r == INF) return -1;
return r;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |