이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "robots.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
#define F first
#define S second
#define endl '\n'
#define fastio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define maxp 22
#define EPS (ld)(1e-18)
#define mod (int)(1e9+7)
#define N (int)(1e6+1)
struct ano{
int w;
int s;
int id;
};
bool cmpW(ano a, ano b){
if(a.w==b.w)
return a.s>b.s;
return a.w>b.w;
}
bool cmpS(ano a, ano b){
if(a.s==b.s)
return a.w>b.w;
return a.s>b.s;
}
ano sortw[N];
ano sorts[N];
bool chk(int x, int w[],int s[], int n, int weak, int small){
int i;
bool v[n];
memset(v,0,sizeof v);
int cnt=0;
int pos=0;
int curr=0;
for(i=0;i<n;i++){
if(pos>=weak)
break;
if(w[pos]>sortw[i].w){
curr++;
v[sortw[i].id]=true;
cnt++;
if(curr==x){
curr=0;
pos++;
}
}
}
pos=0;
curr=0;
for(i=0;i<n;i++){
if(pos>=small)
break;
if(!v[sorts[i].id] && s[pos]>sorts[i].s){
curr++;
v[sorts[i].id]=true;
cnt++;
if(curr==x){
curr=0;
pos++;
}
}
}
if(cnt==n)
return true;
memset(v,0,sizeof v);
cnt=0;
pos=0;
curr=0;
for(i=0;i<n;i++){
if(pos>=small)
break;
if(!v[sorts[i].id] && s[pos]>sorts[i].s){
curr++;
v[sorts[i].id]=true;
cnt++;
if(curr==x){
curr=0;
pos++;
}
}
}
pos=0;
curr=0;
for(i=0;i<n;i++){
if(pos>=weak)
break;
if(w[pos]>sortw[i].w){
curr++;
v[sortw[i].id]=true;
cnt++;
if(curr==x){
curr=0;
pos++;
}
}
}
if(cnt==n)
return true;
return false;
}
int putaway(int weak, int small, int n, int w[], int s[], int arrW[], int arrS[]) {
int i;
sort(w,w+weak,greater<int>());
sort(s,s+small,greater<int>());
for(i=0;i<n;i++){
ano temp={arrW[i],arrS[i],i};
sortw[i]=temp;
sorts[i]=temp;
}
sort(sortw,sortw+n,cmpW);
sort(sorts,sorts+n,cmpS);
int bigw=-1;
if(weak)
bigw=w[0];
int bigs=-1;
if(small)
bigs=s[0];
bool ok=0;
if(bigw<=sortw[0].w && bigs<=sortw[0].s)
ok=1;
if(bigw<=sorts[0].w && bigs<=sorts[0].s)
ok=1;
if(ok)
return -1;
int l=1,r=n;
int ans=n;
while(l<=r){
int mid=(l+r)/2;
bool ok=chk(mid,w,s,n,weak,small);
if(ok){
ans=mid;
r=mid-1;
}
else
l=mid+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... |