# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
316927 | jungsnow | Cheerleaders (info1cup20_cheerleaders) | C++14 | 2086 ms | 35340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
typedef pair<vi, int> vii;
int n, ans;
map <vi, vii> pre;
map <vi, bool> mp;
vi swap(vi &a) {
vi b(1 << n);
for (int i = 0; i < (1 << n); ++i) {
b[i] = a[i ^ (1 << n - 1)];
}
return b;
}
vi split(vi &a) {
vi b(1 << n);
for (int i = 0; i < (1 << n); ++i) {
int ni = i >> 1;
if (i & 1) ni |= (1 << n - 1);
else ni &= (1 << n - 1) - 1;
b[ni] = a[i];
}
return b;
}
int inv(vi &a) {
int cn = 0;
for (int i = 0; i < (1 << n); ++i) {
for (int j = i + 1; j < (1 << n); ++j) {
cn += (a[i] > a[j]);
}
}
return cn;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> n;
if (n == 0) {
cout << 0 << '\n';
return 0;
}
vi a(1 << n);
for (int i = 0; i < (1 << n); ++i) {
cin >> a[i];
}
ans = inv(a); vi res;
queue <vi> q; q.push(a);
mp[a] = true;
while (q.size()) {
vi c = q.front(); q.pop();
vi d = split(c);
if (!mp.count(d)) {
mp[d] = true;
int tm = inv(d);
if (tm < ans) {
ans = tm;
res = d;
}
pre[d] = vii(c, 2);
q.push(d);
}
d = swap(c);
if (!mp.count(d)) {
mp[d] = true;
int tm = inv(d);
if (tm < ans) {
ans = tm;
res = d;
}
pre[d] = vii(c, 1);
q.push(d);
}
}
cout << ans << '\n';
vector <int> vec;
while (pre.count(res)) {
vec.push_back(pre[res].second);
res = pre[res].first;
}
reverse(vec.begin(), vec.end());
for (int x : vec) cout << x;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |