# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
657440 | PanTkd | 로봇 (IOI13_robots) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#include "robots.h"
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
#define fail(s, x...) do { \
fprintf(stderr, s "\n", ## x); \
exit(1); \
} while(0)
#define MAX_A 50000
#define MAX_B 50000
#define MAX_T 500000
static int X[MAX_A];
static int Y[MAX_B];
static int W[MAX_T];
static int S[MAX_T];
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
ll ans=1;
ll i = 0 , j = 0 ;
sort(X.begin(),X.end());
sort(W.begin(),W.end());
reverse(X.begin(),X.end());
reverse(W.begin(),W.end());
if(X[0]<=W[0]) return -1;
while(1){
if(X[i]>W[j]){
i++,j++;
}
else{
i = 0;
ans++;
}
}
return ans;
}