Submission #595535

#TimeUsernameProblemLanguageResultExecution timeMemory
595535vh50Art Collections (BOI22_art)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; void solve(int N) { vector <int> v; if(N <= 6) { v = {1, 2, 3, 4, 5, 6}; while(publish(v)) { next_permutation(v.begin(), v.end()); } answer(v); } }

Compilation message (stderr)

art.cpp: In function 'void solve(int)':
art.cpp:9:9: error: 'publish' was not declared in this scope
    9 |   while(publish(v))
      |         ^~~~~~~
art.cpp:13:3: error: 'answer' was not declared in this scope
   13 |   answer(v);
      |   ^~~~~~
interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~