Submission #1007276

#TimeUsernameProblemLanguageResultExecution timeMemory
1007276devariaotaArt Collections (BOI22_art)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "art.h" using namespace std; #define int long long #define pb push_back #define endl '\n' #define all(v) v.begin(), v.end() #define fr(m,n,k) for(int m=n;m<=k;m++) int n; void solve(int N) { n = N; std::vector<int> v; fr(i, 1, n) v.pb(i); x = publish(v); if (x == 0) { answer(v); return; } while (next_permutation(all(v))) { x = publish(v); if (x == 0) { answer(v); return; } } }

Compilation message (stderr)

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