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 <bits/stdc++.h>
#include "koala.h"
using namespace std;
int B[100], R[100];
int minValue(int N, int W) {
B[0] = 1;
playRound(B, R);
for(int i = 0; i < N; ++i)
if(!R[i]) return i;
return -1;
}
int maxValue(int N, int W) {
vector<int> L;
for(int i = 0; i < N; ++i)
L.push_back(i);
while(L.size() > 1) {
int t = W / L.size();
for(int i = 0; i < N; ++i)
B[i] = R[i] = 0;
for(int i : L) B[i] = t;
playRound(B, R);
L.clear();
for(int i = 0; i < N; ++i) {
if(R[i] > t) {
L.push_back(i);
}
}
}
return L[0];
}
int greaterValue(int N, int W) {
int lo = 1, hi = min(W / 2, 9);
while(lo <= hi) {
int mid = lo + hi >> 1;
B[0] = B[1] = mid;
playRound(B, R);
bool z = R[0] > B[0];
bool o = R[1] > B[1];
if(z == o) {
if(z) lo = mid + 1;
else hi = mid - 1;
} else {
return z ? 0 : 1;
}
} return -1;
}
void allValues(int N, int W, int *B) {
if (W == 2*N) {
} else {
}
}
Compilation message (stderr)
koala.cpp: In function 'int greaterValue(int, int)':
koala.cpp:38:22: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
int mid = lo + hi >> 1;
~~~^~~~
# | 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... |