art.cpp: In function 'void solve(long long int)':
art.cpp:15:5: error: 'x' was not declared in this scope
15 | x = publish(v);
| ^
art.cpp:15:17: error: could not convert 'v' from 'vector<long long int>' to 'vector<int>'
15 | x = publish(v);
| ^
| |
| vector<long long int>
art.cpp:17:16: error: could not convert 'v' from 'vector<long long int>' to 'vector<int>'
17 | answer(v); return;
| ^
| |
| vector<long long int>
art.cpp:20:21: error: could not convert 'v' from 'vector<long long int>' to 'vector<int>'
20 | x = publish(v);
| ^
| |
| vector<long long int>
art.cpp:22:20: error: could not convert 'v' from 'vector<long long int>' to 'vector<int>'
22 | answer(v); return;
| ^
| |
| vector<long long int>
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) {
| ~~~~~~~~~^~~~