#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
--a[i];
}
vector<vector<vector<int>>> dp(n);
vector<map<int, int>> idx(n);
auto Merge = [&](int x, vector<int> va, vector<int> vb) {
vector<int> v(1, x);
int pa = 0, pb = 0;
for (int pw = 1; pa < (int) va.size(); pw *= 2) {
for (int iter = 0; iter < pw; iter++) {
if (pa < (int) va.size()) {
v.push_back(va[pa]);
pa += 1;
} else {
break;
}
}
for (int iter = 0; iter < pw; iter++) {
if (pb < (int) vb.size()) {
v.push_back(vb[pb]);
pb += 1;
} else {
break;
}
}
}
return v;
};
function<vector<int>(int, int)> Solve = [&](int i, int v) {
if (i >= n) {
return vector<int>{};
}
if (!idx[i][v]) {
idx[i][v] = (int) idx[i].size();
dp[i].push_back({});
}
int p = idx[i][v];
if (!dp[i][p].empty()) {
return dp[i][p];
}
int L = i * 2 + 1, R = i * 2 + 2;
if (L >= n) {
return dp[i][p] = {v};
}
if (R >= n) {
return dp[i][p] = min(Merge(v, Solve(L, a[L]), {}),
Merge(a[L], Solve(L, v), {}));
}
return dp[i][p] = min({Merge(v, Solve(L, a[L]), Solve(R, a[R])),
Merge(a[L], Solve(L, v), Solve(R, a[R])),
Merge(a[R], Solve(L, a[L]), Solve(R, v)),
Merge(a[R], Solve(L, v), Solve(R, a[L]))});
};
vector<int> res = Solve(0, a[0]);
for (int i = 0; i < (int) res.size(); i++) {
cout << res[i] + 1 << " ";
}
cout << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |