# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
975528 | De3b0o | Koala Game (APIO17_koala) | C++14 | 3 ms | 344 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "koala.h"
#include<bits/stdc++.h>
#define ll long long
#define F first
#define S second
#define in insert
#define pb push_back
#define ppb pop_back()
#define d3 ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define cans cout << ans << "\n";
#define yes cout << "Yes" << "\n";
#define no cout << "No" << "\n";
#define pll pair<ll,ll>
#define lin cout << "\n";
#define sqr 340
#define mod 1000000007
#define mid ((l+r)/2)
#define lc (2*n)
#define rc (2*n+1)
using namespace std;
int minValue(int N, int W)
{
ll n = N;
int r[n];
int b[n] = {0};
b[0]++;
playRound(b,r);
ll ans;
for(int i = 0 ; n>i ; i++)
if(r[i]==0)
ans=i;
return ans;
}
int maxValue(int N, int W)
{
ll n = N;
ll ans;
vector<ll> v;
for(int i = 0 ; n>i ; i++)
v.pb(i);
while(true)
{
if(v.size()==1)
{
ans=v[0];
break;
}
int b[n] = {0};
int r[n];
for(auto it : v)
b[it]=1;
playRound(b,r);
v.clear();
for(int i = 0 ; n>i ; i++)
{
if(r[i]==2)
v.pb(i);
}
}
return ans;
}
int greaterValue(int N, int W)
{
}
void allValues(int N, int W, int *P)
{
}
Compilation message (stderr)
# | 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... |