이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "robots.h"
using namespace std;
int ans = 0;
int putaway(int a, int b, int t, int x[], int y[], int w[], int s[]){
sort(x, x + a);
multiset<int> st;
for(int i = 0; i < t; i++) st.insert(w[i]);
while(!st.empty()){
ans++;
bool flag = false;
int cur = 0;
while(!st.empty() && cur != a){
int indx = upper_bound(x + cur, x + a, *st.begin()) - x;
if(indx == a) break;
else{
cur = indx + 1;
auto it = prev(st.lower_bound(x[indx]));
st.erase(it);
flag = true;
}
}
if(flag == false) return -1;
}
return ans;
}
# | 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... |