Submission #595535

# Submission time Handle Problem Language Result Execution time Memory
595535 2022-07-13T20:00:17 Z vh50 Art Collections (BOI22_art) C++17
Compilation error
0 ms 0 KB
#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

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) {
      |        ~~~~~~~~~^~~~