#include<bits/stdc++.h>
#define MAXN 107
#include "koala.h"
using namespace std;
int b[MAXN],r[MAXN];
int minValue(int N, int W) {
b[0]=1;
playRound(b,r);
for(int i=0;i<N;i++){
if(r[i]==0)return i;
}
return 0;
}
vector<int> can,best;
void reset(){
best.clear(); can.clear();
for(int i=0;i<100;i++)b[i]=0;
}
int maxValue(int N, int W) {
reset();
for(int i=0;i<50;i++){
b[i]=2;
}
playRound(b,r);
for(int i=0;i<50;i++){
if(r[i]>=3)can.push_back(i);
}
for(int i=0;i<100;i++){
if(i<50)b[i]=0;
else b[i]=2;
}
playRound(b,r);
for(int i=50;i<100;i++){
if(r[i]>=3)can.push_back(i);
}
for(int i=0;i<100;i++)b[i]=0;
cout<<can.size()<<":\n";
for(int i:can)b[i]=3;
playRound(b,r);
for(int i:can){
if(r[i]>=4)best.push_back(i);
}
for(int i=0;i<100;i++)b[i]=0;
for(int i:best)b[i]=7;
playRound(b,r);
for(int i:best){
if(r[i]>=8)return i;
}
}
bool compare(int x,int y){
int ll=0,rr=10,tt;
while(ll+1<rr){
tt=(ll+rr)/2;
b[0]=b[1]=tt;
playRound(b,r);
if(r[0]<tt and r[1]<tt){
rr=tt;
}else if(r[0]>=tt and r[0]>=tt){
ll=tt;
}else{
if(r[0]>=tt)return false;
else return true;
}
}
return false;
}
int greaterValue(int N, int W) {
if(compare(0,1))return 1;
else return 0;
}
int order[MAXN];
void allValues(int N, int W, int *P) {
for(int i=0;i<N;i++){
order[i]=i;
}
sort(order,order+1,compare);
for(int i=0;i<N;i++){
P[order[i]]=i+1;
}
}
Compilation message
koala.cpp: In function 'int maxValue(int, int)':
koala.cpp:66:1: warning: control reaches end of non-void function [-Wreturn-type]
66 | }
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
344 KB |
Output is correct |
2 |
Correct |
3 ms |
344 KB |
Output is correct |
3 |
Correct |
3 ms |
344 KB |
Output is correct |
4 |
Correct |
3 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
73 ms |
456 KB |
Output is partially correct |
2 |
Partially correct |
75 ms |
344 KB |
Output is partially correct |
3 |
Partially correct |
67 ms |
456 KB |
Output is partially correct |
4 |
Partially correct |
69 ms |
344 KB |
Output is partially correct |
5 |
Partially correct |
70 ms |
352 KB |
Output is partially correct |
6 |
Partially correct |
69 ms |
352 KB |
Output is partially correct |
7 |
Partially correct |
69 ms |
344 KB |
Output is partially correct |
8 |
Partially correct |
85 ms |
348 KB |
Output is partially correct |
9 |
Partially correct |
74 ms |
344 KB |
Output is partially correct |
10 |
Partially correct |
71 ms |
352 KB |
Output is partially correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |