# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1178650 | newbie__1 | Koala Game (APIO17_koala) | C++17 | 0 ms | 0 KiB |
#include "koala.h"
#include<bits/stdc++.h>
#define ll long long
using namespace std;
ll B[100],R[100];
ll minValue(ll n,ll w){
for(ll i=0;i<n;i++){
B[i]=0;
R[i]=0;
}
B[0]=1;
playRound(B,R);
for(ll i=0;i<n;i++){
if(R[i]==0){
return i;
}
}
return 0;
}
ll maxValue(ll n,ll w){
// ind mx val
return n;
}
ll greaterValue(ll n,ll w){
// ind 0 || 1
return n;
}
void allValues(ll n,ll w,vector<ll>& p){
return;
}