# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1059110 | vjudge1 | 로봇 (IOI13_robots) | C++17 | 197 ms | 65536 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
bool cmp(vi a, vi b) {
return a.size() < b.size();
}
int putaway(int a, int b, int t, int x[], int y[], int w[], int s[]){
vector<vi> n(a + b);
int mem[t];
memset(mem, -1, sizeof mem);
for(int i = 0; i < a; ++i){
int k = x[i];
for(int j = 0; j < t; ++j){
if(w[j] < k){
n[i].pb(j);
mem[j] = 1;
}
}
}
for(int i = 0; i < b; ++i){
int k = y[i];
for(int j = 0; j < t; ++j){
if(s[j] < k){
n[a + i].pb(j);
mem[j] = 1;
}
}
}
sort(whole(n), cmp);
for(int i = 0; i < t; ++i){
if(mem[i] == -1){
return -1;
}
}
int ans = 0;
int cnt = 0;
int pos[n.size()];
memset(pos, 0, sizeof pos);
while(cnt < t){
for(int i = 0; i < n.size(); ++i){
if(pos[i] >= n[i].size()){
continue;
}
if(mem[n[i][pos[i]]] == 10){
pos[i]++;
i--;
}else{
mem[n[i][pos[i]]] = 10;
cnt++;
pos[i]++;
}
}
ans++;
}
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... |