# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
197501 | handlename | 로봇 (IOI13_robots) | C++17 | 1962 ms | 24688 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
using namespace std;
int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) {
sort(X,X+A);
sort(Y,Y+B);
if (T<=50){
multiset<pair<int,int> > weight;
multiset<pair<int,int> > sizee;
for (int i=0;i<T;i++){
if (W[i]>=X[A-1] && S[i]>=Y[B-1]) return -1;
weight.insert(make_pair(W[i],S[i]));
sizee.insert(make_pair(S[i],W[i]));
}
int wstart=0,sstart=0,total=0;
while (!weight.empty()){
for (int i=wstart;i<A;i++){
auto it=weight.lower_bound(make_pair(X[i],0));
if (it==weight.begin()){
wstart=i;
continue;
}
else {
it--;
int curw=(*it).first;
int curs=(*it).second;
weight.erase(it);
sizee.erase(sizee.find(make_pair(curs,curw)));
}
}
# | 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... |