| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1060627 | vjudge1 | 로봇 (IOI13_robots) | C++17 | 1 ms | 12636 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include<bits/stdc++.h>
using namespace std;
typedef pair<int, int> ii;
typedef long long ll;
typedef pair<long long, long long> pll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<string> vs;
#define pb push_back
#define fi first
#define se second
#define whole(v) v.begin(), v.end()
#define rwhole(v) v.rbegin(), v.rend()
#define inf INT_MAX/2
#define fro front
int A, B, T;
int x[1000000];
int y[1000000];
int w[1000000];
int s[1000000];
vector<ii> z;
bool f(int n){
int j = 0;
int i = 0;
int cnt = 0;
priority_queue<int> q;
for(j; j < A; ++j){
while(z[i].fi >= x[j]){
q.push(z[i].se);
++i;
if(i >= z.size()){
break;
}
cnt++;
}
if(j > 0)
cnt -= n;
}
vector<int> ne;
for(int k = 0; k < cnt; ++k){
ne.pb(q.top());
q.pop();
}
sort(whole(ne));
i = 0;
j = 0;
for(j; j < B; ++j){
int cn = 0;
while(ne[i] < y[j]){
cn++;
cnt--;
++i;
if(i >= ne.size()){
break;
}
if(cn == n){
break;
}
}
if(i >= ne.size()){
break;
}
}
if(cnt > 0){
return 0;
}else{
return 1;
}
}
int putaway(int a, int b, int t, int X[], int Y[], int W[], int S[]){
for(int i = 0; i < a; ++i){
x[i] = X[i];
}
for(int i = 0; i < b; ++i){
y[i] = Y[i];
}
for(int i = 0; i < t; ++i){
w[i] = W[i];
}
for(int i = 0; i < t; ++i){
s[i] = S[i];
}
sort(x, x+a);
sort(y, y+b);
reverse(x, x+a);
A = a;
B = b;
T = t;
for(int i = 0; i < t; ++i){
z.pb(ii(w[i], s[i]));
if(w[i] >= x[0] && s[i] >= y[0]){
return -1;
}
}
sort(rwhole(z));
int lo = 0;
int hi = t + 2;
while(hi - lo > 1){
int mi = lo + (hi - lo) / 2;
if(f(mi)){
hi = mi;
}else{
lo = mi;
}
}
return hi;
}컴파일 시 표준 에러 (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... | ||||
