#include "koala.h"
#include<bits/stdc++.h>
#define pb push_back
using namespace std;
int minValue(int n,int w){
int a[n],b[n];
for(int i=0;i<n;i++) a[i]=0;
a[0]=1;
playRound(a,b);
for(int i=0;i<n;i++) if(a[i]>=b[i]) return i;
}
int maxValue(int n,int w){
vector<int> c;
for(int i=0;i<n;i++) c.pb(i);
while((int)c.size()>1){
int a[n],b[n];
for(int i=0;i<n;i++) a[i]=0;
for(int i:c) a[i]=w/(int)c.size();
playRound(a,b);
c.clear();
for(int i=0;i<n;i++) if(b[i]>a[i]&&a[i]>0) c.pb(i);
}
return c[0];
}
int greaterValue(int n,int w){
int low=1,high=min(10,w/2);
while(low<=high){
int mid=(low+high)/2;
int a[n],b[n];
for(int i=0;i<n;i++) a[i]=0;
a[0]=a[1]=mid;
playRound(a,b);
if(b[0]>mid&&b[1]>mid) low=mid+1;
else if(b[0]<=mid&&b[1]<=mid) high=mid-1;
else return (b[0]>mid?0:1);
}
return 0;
}
void allValues(int n,int w,int *p){
if(w==2*n){
auto cmp=[&](int x,int y){
int a[n],b[n];
for(int i=0;i<n;i++) a[i]=0;
a[x]=a[y]=w/2;
playRound(a,b);
return b[x]<b[y];
};
function<vector<int>(int,int)> solve=[&](int l,int r){
if(l==r) return vector<int>(1,l);
int mid=(l+r)/2;
vector<int> vl=solve(l,mid);
vector<int> vr=solve(mid+1,r);
vector<int> ret;
int i=0,j=0,x=(int)vl.size(),y=(int)vr.size();
while(i<x||j<y){
if(i==x||(j<y&&!cmp(vl[i],vr[j]))) ret.pb(vr[j++]);
else ret.pb(vl[i++]);
}
return ret;
};
vector<int> res=solve(0,n-1);
for(int i=0;i<n;i++) p[res[i]]=i;
} else {
// TODO: Implement Subtask 5 solution here.
// You may leave this block unmodified if you are not attempting this
// subtask.
}
}
Compilation message
koala.cpp: In function 'int minValue(int, int)':
koala.cpp:14:1: warning: control reaches end of non-void function [-Wreturn-type]
14 | }
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
344 KB |
Output is correct |
2 |
Correct |
3 ms |
456 KB |
Output is correct |
3 |
Correct |
3 ms |
344 KB |
Output is correct |
4 |
Correct |
3 ms |
344 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
344 KB |
Output is correct |
2 |
Correct |
10 ms |
344 KB |
Output is correct |
3 |
Correct |
10 ms |
344 KB |
Output is correct |
4 |
Correct |
10 ms |
452 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
42 ms |
464 KB |
Output is correct |
2 |
Correct |
47 ms |
480 KB |
Output is correct |
3 |
Correct |
42 ms |
464 KB |
Output is correct |
4 |
Correct |
39 ms |
596 KB |
Output is correct |
5 |
Correct |
41 ms |
476 KB |
Output is correct |
6 |
Correct |
40 ms |
344 KB |
Output is correct |
7 |
Correct |
40 ms |
344 KB |
Output is correct |
8 |
Correct |
40 ms |
480 KB |
Output is correct |
9 |
Correct |
41 ms |
460 KB |
Output is correct |
10 |
Correct |
39 ms |
480 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
19 ms |
452 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |