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 <iostream>
#include <vector>
using namespace std;
int D[109], R[109];
void preset() {
for (int i = 0; i < 109; i++) { D[i] = 0; R[i] = 0; }
}
int minValue(int N, int W) {
preset(); D[0] = 1;
playRound(D, R);
for (int i = 0; i < N; i++) {
if (D[i] >= R[i]) return i;
}
return -1;
}
int maxValue(int N, int W) {
int P[4] = { 1, 2, 4, 11 };
vector<int>I; for (int i = 0; i < N; i++) I.push_back(i);
for (int i = 0; i < 4; i++) {
preset();
for (int j = 0; j < I.size(); j++) D[I[j]] = P[i];
playRound(D, R);
vector<int>II; for (int j = 0; j < I.size(); j++) { if (D[I[j]] < R[I[j]]) II.push_back(I[j]); }
I = II;
}
return I[0];
}
int solve_3(int N, int W, int P) {
preset();
D[0] = P; D[1] = P;
playRound(D, R);
int v1 = 0; if (D[0] < R[0]) v1 = 1;
int v2 = 0; if (D[1] < R[1]) v2 = 2;
return v1 + v2;
}
int greaterValue(int N, int W) {
int G = solve_3(N, W, 6);
if (G == 1 || G == 2) return G - 1;
if (G == 0) {
int G1 = solve_3(N, W, 1); if (G1 == 1 || G1 == 2) return G1 - 1;
int G2 = solve_3(N, W, 3); if (G2 == 1 || G2 == 2) return G2 - 1;
return -1;
}
if (G == 3) {
int G1 = solve_3(N, W, 9); if (G1 == 1 || G1 == 2) return G1 - 1;
return -1;
}
return -1;
}
void allValues(int N, int W, int *P) {
if (W == 2*N) {
}
else {
}
}
Compilation message (stderr)
koala.cpp: In function 'int maxValue(int, int)':
koala.cpp:26:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j = 0; j < I.size(); j++) D[I[j]] = P[i];
~~^~~~~~~~~~
koala.cpp:28:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
vector<int>II; for (int j = 0; j < I.size(); j++) { if (D[I[j]] < R[I[j]]) II.push_back(I[j]); }
~~^~~~~~~~~~
# | 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... |