# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1036439 | clementine | 로봇 (IOI13_robots) | C++17 | 120 ms | 19864 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
bool can(int time, int A, vector<int> tots)
{
for(int i = 0; i < A; i++)
{
if(tots[i] > time)
{
tots[i+1] += tots[i] - time;
}
}
if(tots[A] !=0)
{
return false;
}
return true;
}
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
vector<int> Xs(X, X+A);
vector<int> Ys(Y, Y+B);
vector<int> Ws(W, W+T);
vector<int> Ss(S, S + T);
sort(Xs.begin(), Xs.end());
sort(Ws.begin(), Ws.end());
int x = 0;
int total = 0;
int i = 0;
Xs.push_back(INT32_MAX);
vector<int> tots;
while(i!=T)
{
if(Ws[i] < Xs[x])
{
total ++;
i++;
}
else
{
tots.push_back(total);
total = 0;
x +=1;
}
}
tots.push_back(total);
if(tots.size() != A+1)
{
tots.push_back(0);
}
if(Xs.back() < Ws.back())
{
return -1;
}
int l = 1;
int r = 1000006;
while(l != r)
{
int mid = (l + r)/2;
if(can(mid, A, tots))
{
r = mid;
}
else
{
l = mid + 1;
}
}
return l;
//return can(4, A, tots);
}
컴파일 시 표준 에러 (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... |