This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define f(i,a,b) for(int i = a; i < b; i++)
const int inf = 2e9;
int n, k;
int ans = inf;
vector <int> res;
map <vector <int>, bool> on;
void go(vector <int> v, vector <int> &curr){
int inver = 0;
f(i,0,n) f(j,i+1,n) if(v[i] > v[j]) inver++;
on[v] = 1;
if(inver < ans){
ans = inver;
res = curr;
}
if(curr.size() == 2*k) return;
f(i,1,3){
if(i == 1 and curr.size() != 0 and curr.back() == 1) continue;
curr.push_back(i);
vector <int> aux;
if(i == 1){
f(j,n/2,n) aux.push_back(v[j]);
f(j,0,n/2) aux.push_back(v[j]);
}
else{
f(j,0,n) if(j%2 == 0) aux.push_back(v[j]);
f(j,0,n) if(j%2 != 0) aux.push_back(v[j]);
}
if(!on[aux]) go(aux, curr);
curr.pop_back();
}
}
int main(){
vector <int> v, curr;
cin >> n;
k = n;
n = (1<<n);
f(i,0,n){
int x;
cin >> x;
v.push_back(x);
}
go(v, curr);
cout << ans << "\n";
for(int x: res) cout << x;
if(res.size()) cout << "\n";
return 0;
}
Compilation message (stderr)
cheerleaders.cpp: In function 'void go(std::vector<int>, std::vector<int>&)':
cheerleaders.cpp:21:20: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
21 | if(curr.size() == 2*k) return;
| ~~~~~~~~~~~~^~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |