# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
202377 | mohamedsobhi777 | 로봇 (IOI13_robots) | C++14 | 271 ms | 8600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <robots.h>
#include <bits/stdc++.h>
using namespace std;
const int N = 10000 + 4;;
int n ;
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
int ret = 0;
sort(X, X + A);
sort(W, W + T);
int l = 1 , r = T;
if(W[T-1] >= X[A-1])
return -1;
int ans = T;
while(l<=r)
{
int mid =(l+r)/2;
bool ok = 1;
int j = 0 , k = 0;
for(int i =0;i<T;i++)
{
while(W[i] >= X[j] && j<A)
{
j++;
}
if(j==A)
{
ok = 0;
break;
}
k++;
if(k==mid)
{
j++;
k=0;
}
}
if(ok)
{
ans = mid;
r = mid-1;
}
else
{
l = mid+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... |