Submission #873009

#TimeUsernameProblemLanguageResultExecution timeMemory
873009Faisal_SaqibArt Collections (BOI22_art)C++17
Compilation error
0 ms0 KiB
#include "art.h" #include <iostream> #include <algorithm> #include <climits> #include <queue> #include <cmath> #include <map> #include <set> #include <random> #include <chrono> #include <iomanip> #include <vector> #include <fstream> using namespace std; #define vll vector<ll> #define sll set<ll> #define vstr vector<string> #define ll long long #define ld long double #define supra main #define pb push_back #define add insert #define rall(x) rbegin(x),rend(x) #define all(x) (x).begin(),(x).end() #define I ios_base::sync_with_stdio(false); #define Hear cin.tie(NULL); #define Shots cout.tie(NULL); #define Ratatatata #define bits_on(a) (__builtin_popcountll(a)) #define mx_pw2(a) (__builtin_ctzll(a)) mt19937 RNG(chrono::steady_clock::now().time_since_epoch().count()); #define SHUFFLE(v) shuffle(all(v), RNG); void solve(int n) { vll order; for(int i=1;i<=n;i++) order.pb(i); do { if(!publish(order)) { answer(order); } }while(next_permutation(all(order))); }

Compilation message (stderr)

art.cpp: In function 'void solve(int)':
art.cpp:40:21: error: could not convert 'order' from 'vector<long long int>' to 'vector<int>'
   40 |         if(!publish(order))
      |                     ^~~~~
      |                     |
      |                     vector<long long int>
art.cpp:42:20: error: could not convert 'order' from 'vector<long long int>' to 'vector<int>'
   42 |             answer(order);
      |                    ^~~~~
      |                    |
      |                    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) {
      |        ~~~~~~~~~^~~~