Submission #595511

#TimeUsernameProblemLanguageResultExecution timeMemory
595511Hacv16Art Collections (BOI22_art)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include<art.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; const int MAX = 2e6 + 15; const int INF = 0x3f3f3f3f; const int MOD = 1e9 + 7; #define pb push_back #define sz(x) (int) x.size() #define fr first #define sc second #define mp make_pair #define all(x) x.begin(), x.end() #define dbg(x) cout << #x << ": " << "[ " << x << " ]\n" int inversions = 0, n; bool cmp(int a, int b){ vector<int> aux(n); for(int i = 0; i < n; i++){ int aux[i] = i + 1; if(aux[i] == a) aux[i] = b; else if(aux[i] == b) aux[i] = a; } int cur = publish(aux); return publish(aux) < inversions; } void solve(int N){ n = N; vector<int> v(n); iota(all(v), 1); inversions = publish(v); sort(all(v), cmp); answer(v); }

Compilation message (stderr)

art.cpp: In function 'bool cmp(int, int)':
art.cpp:26:18: error: array must be initialized with a brace-enclosed initializer
   26 |   int aux[i] = i + 1;
      |                ~~^~~
art.cpp:32:6: warning: unused variable 'cur' [-Wunused-variable]
   32 |  int cur = publish(aux);
      |      ^~~
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) {
      |        ~~~~~~~~~^~~~