Submission #387633

#TimeUsernameProblemLanguageResultExecution timeMemory
387633casperwangCheerleaders (info1cup20_cheerleaders)C++14
13 / 100
2086 ms1356 KiB
#include <bits/stdc++.h>
#define pb emplace_back
#define All(x) x.begin(), x.end()
#define pii pair<int,int>
#define ff first
#define ss second
using namespace std;
#define debug(args...) kout("[ " + string(#args) + " ]", args)
void kout() { cerr << endl; }
template <class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ',kout(b...); }
template <class T> void pary(T L, T R) { while (L != R) cerr << *L << " \n"[++L==R]; }

const int MAXN = 17;
int N;
int ans;
pii op;
string ops;
vector <int> a, c;
int val[MAXN+1];

inline int lb(int a) {
	return a &- a;
}

void init() {
	a.resize(1<<N);
	c.resize(1<<N);
}

void build() {
}

int cnt() {
	int s = 0;
	for (int i = 0; i < (1<<N); i++) {
		for (int j = i+1; j < (1<<N); j++) {
			s += c[i] > c[j];
		}
	}
	return s;
}

string solve(pii op) {
	string str;
	for (int i = 0; i < op.ff; i++)
		str += '2';
	for (int i = 0; i < N; i++) {
		str += '2';
		if ((1<<i) & op.ss) str += '1';
	}
	return str;
}

signed main() {
	ios_base::sync_with_stdio(0), cin.tie(0);
	cin >> N;
	init();
	for (int i = 0; i < (1<<N); i++)
		cin >> a[i], c[a[i]] = i;
	ans = cnt();
	for (int j = 0; j < N; j++) {
		int x = 0;
		build();
		for (int i = 1; i < (1<<N); i++) {
			for (int k = 0; k < (1<<N); k++) {
				c[k] ^= lb(i);
			}
			x ^= lb(i);
			int C = cnt();
			if (C < ans)
				ans = C, op = pii(j, x);
		}
		for (int i = 0; i < (1<<N); i++) {
			c[i] = (1<<(N-1)) * (c[i] & 1) + c[i] / 2;
		}
	}
	cout << ans << '\n';
	cout << solve(op) << '\n';
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...