Submission #669785

#TimeUsernameProblemLanguageResultExecution timeMemory
669785Sorting코알라 (APIO17_koala)C++17
Compilation error
0 ms0 KiB
#include "koala.h" #include <iostream> #include <numeric> #include <vector> #include <algorithm> #include <utility> using namespace std; int b[103], r[103]; int minValue(int n, int w) { fill(b, b + n, 0); b[0] = 1; playRound(b, r); if(r[0] < 2) return 0; for(int i = 1; i < n; ++i) if(!r[i]) return i; assert(false); return -1; } int maxValue(int n, int w) { vector<int> poss(n); iota(poss.begin(), poss.end(), 0); while(poss.size() > 1){ int x = min(13, (int)n / (int)poss.size()); fill(b, b + n, 0); for(int pos: poss) b[pos] = x; playRound(b, r); poss.clear(); for(int i = 0; i < n; ++i) if(r[i] > x) poss.push_back(i); } return poss[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:21:5: error: 'assert' was not declared in this scope
   21 |     assert(false);
      |     ^~~~~~
koala.cpp:6:1: note: 'assert' is defined in header '<cassert>'; did you forget to '#include <cassert>'?
    5 | #include <algorithm>
  +++ |+#include <cassert>
    6 | #include <utility>
koala.cpp: In function 'void allValues(int, int, int*)':
koala.cpp:53:9: error: 'W' was not declared in this scope
   53 |     if (W == 2*N) {
      |         ^
koala.cpp:53:16: error: 'N' was not declared in this scope
   53 |     if (W == 2*N) {
      |                ^