Submission #100457

#TimeUsernameProblemLanguageResultExecution timeMemory
100457square1001Koala Game (APIO17_koala)C++14
Compilation error
0 ms0 KiB
#include "koala.h" int minValue(int N, int W) { // TODO: Implement Subtask 1 solution here. // You may leave this function unmodified if you are not attempting this // subtask. vector<int> B(N, 0); V[0] = 1; vector<int> R(N); playRound(B, R); for(int i = 0; i < N; ++i) { if(R[i] <= B[i]) return i; } return -1; } int maxValue(int N, int W) { // TODO: Implement Subtask 2 solution here. // You may leave this function unmodified if you are not attempting this // subtask. return 0; } int greaterValue(int N, int W) { // TODO: Implement Subtask 3 solution here. // You may leave this function unmodified if you are not attempting this // subtask. return 0; } void allValues(int N, int W, int *P) { if (W == 2*N) { // TODO: Implement Subtask 4 solution here. // You may leave this block unmodified if you are not attempting this // subtask. } else { // TODO: Implement Subtask 5 solution here. // You may leave this block unmodified if you are not attempting this // subtask. } }

Compilation message (stderr)

koala.cpp: In function 'int minValue(int, int)':
koala.cpp:7:5: error: 'vector' was not declared in this scope
     vector<int> B(N, 0); V[0] = 1;
     ^~~~~~
koala.cpp:7:12: error: expected primary-expression before 'int'
     vector<int> B(N, 0); V[0] = 1;
            ^~~
koala.cpp:7:26: error: 'V' was not declared in this scope
     vector<int> B(N, 0); V[0] = 1;
                          ^
koala.cpp:8:12: error: expected primary-expression before 'int'
     vector<int> R(N);
            ^~~
koala.cpp:9:15: error: 'B' was not declared in this scope
     playRound(B, R);
               ^
koala.cpp:9:18: error: 'R' was not declared in this scope
     playRound(B, R);
                  ^