이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "robots.h"
using namespace std;
// #define int long long
#define endl '\n'
#define F first
#define S second
#define pb push_back
#define all(a) a.begin(),a.end()
const int NN=1e6+50000;
const int MOD=1e9+7;
const int off=(1<<11);
int putaway(int A,int B,int T,int X[],int Y[],int W[],int S[]){
int rbt=0,ty=0;
vector<pair<int,int>>vp;
for(int i=0;i<T;i++)vp.pb({W[i],1});
for(int i=0;i<A;i++)vp.pb({X[i],0});
sort(all(vp));
int ans=0;
for(int i=vp.size()-1;i>=0;i--){
if(vp[i].S==0){
rbt++;
}
else{
if(rbt==0)return -1;
ty++;
int x=ty/rbt;
x+=(ty%rbt);
ans=max(ans,x);
}
}
return ans;
}
// signed main(){
// ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
// }
# | 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... |