# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
550851 | David_M | 로봇 (IOI13_robots) | C++14 | 1 ms | 260 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define pb push_back
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
int ans=-1;
vector<array<int, 3>> p(T);
for (int i=0; i<T; i++)p[i]={W[i]+1, S[i]+1, i};
sort(all(p));
p.pb({2000000009, 0, 0});
sort(X, X+A);
sort(Y, Y+B);
int l=1, r=T+1;
while(l<=r){
int m=l+r>>1;
int M=0, k=0, o=0;
vector<bool> f(T,0);
vector<int> v;
priority_queue<array<int, 2>> s;
for (auto[x,y,i] : p){
if(A==0)break;
M=m;
if(x>X[k]){
while(!s.empty() && M--){
f[s.top()[1]]=1;
s.pop();
}
if(k<A && x>X[k])k++;
if(k==A)break;
continue;
}
s.push({y,i});
}
for (int i=0; i<T; i++)
if(!f[i])v.pb(S[i]+1);
sort(all(v));
k=M=0;
for (auto y : v){
if(k==B){o=1;break;}
while(k<B && y>Y[k])k++,M=0;
if(k==B){o=1;break;}
M++;
if(M==m)k++,M=0;
}
if(o)l=m+1; else ans=m, r=m-1;
}
return ans;
}
컴파일 시 표준 에러 (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... |