# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1023534 | boyliguanhan | 로봇 (IOI13_robots) | C++17 | 1872 ms | 22992 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include<bits/stdc++.h>
using namespace std;
vector<pair<int,int>> stuff;
vector<int>small,weak;
int ok(int tm){
map<int,int>kriby;
for(auto y:small)
kriby[y]+=tm;
int wk=weak.size()-1;
for(auto[w,s]:stuff){
if(~wk&&w<weak[wk])
kriby[2e9+1]+=tm,wk--;
auto use=kriby.upper_bound(s);
if(use==kriby.end())return 0;
use->second--;
if(!use->second)
kriby.erase(use);
}
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++)
weak.push_back(X[i]);
for(int i=0;i<B;i++)
small.push_back(Y[i]);
for(int i=0;i<T;i++)
stuff.push_back({W[i],S[i]});
sort(stuff.rbegin(),stuff.rend());
sort(small.begin(),small.end());
sort(weak.begin(),weak.end());
int l=1,r=T,res=-1;
while(l<=r){
int mid=l+r>>1;
if(ok(mid))
res=mid,r=mid-1;
else l=mid+1;
}
return res;
}
컴파일 시 표준 에러 (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... |