# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
67567 | thebes | Robots (IOI13_robots) | C++14 | 2318 ms | 15596 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "robots.h"
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
const int MN = 1e6+6;
pair<int,int> wts[MN];
priority_queue<int> q;
int N, M, T, i;
vector<int> a, b;
bool check(int m){
while(q.size()) q.pop();
int i=0, j = 0;
for(i=0,j=0;i<N;i++){
while(j<T&&wts[j].first<a[i]) q.push(wts[j++].second);
for(int k=0;k<m&&q.size();k++) q.pop();
}
for(;j<T;j++) q.push(wts[j].second);
for(int k=b.size()-1;k>=0;k--){
for(int i=0;i<m&&q.size()&&q.top()<b[k];i++) q.pop();
}
return q.empty();
}
int putaway(int A,int B,int t,int *X,int *Y,int *W,int *S){
N = A, M = B, T = t;
for(int i=0;i<T;i++)
wts[i] = {W[i],S[i]};
for(int i=0;i<N;i++)
a.push_back(X[i]);
for(int i=0;i<M;i++)
Compilation message (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... |