CF1561E 题解

link

给定长度为奇数 的排列 ,要求找出一种长度不超过 的操作序列,使 变为升序,或判断无解。操作如下:

  • 选择一个 ,且 奇数,将 翻转

且为奇数,

首先怎么判断无解,因为 是奇数,所以翻转操作不改变位置的奇偶性,所以有解的充要条件是 的奇偶性都相同。

考虑将两个数绑到一起且倒着操作,比如 一起操作,这样相当与每对数要在五次操作内移动到最后的位置。

我们假设现在考虑的数位置为 要移到位置 ,操作 表示前 的翻转操作,以下给出方案:

很不优的构造 /kk,时间复杂度

CODE

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <bits/stdc++.h>
using namespace std;

inline int read() {
int x = 0, f = 0; char c = 0;
while (!isdigit(c)) f |= c == '-', c = getchar();
while (isdigit(c)) x = (x << 3) + (x << 1) + (c & 15), c = getchar();
return f ? -x : x;
}

#define N 2040

int n, a[N];
vector<int> res;

int can(int n) {
for (int i = 1; i <= n; i ++) {
if ((i & 1) != (a[i] & 1)) return false;
}
return true;
}

int check(int x) {
for (int i = 1; i <= x; i ++) {
if (i != a[i]) return false;
}
return true;
}

void F(int x) {
res.emplace_back(x);
reverse(a + 1, a + x + 1);
}

signed main() {
for (int T = read(); T --;) {
res.clear();
n = read();
for (int i = 1; i <= n; i ++) a[i] = read();
if (!can(n)) { puts("-1"); continue; }
while (!check(n)) {
int x, y;
for (int i = 1; i <= n; i ++) {
if (a[i] == n) x = i;
if (a[i] == n - 1) y = i;
}
if (x == n && y == n - 1) { n -= 2; continue; }
if (x + 1 < y) F(x), F(y - 1), x = y - 1;
if (y + 1 < x) F(x), y = (x + 1 - y), F(y - 1), x = y - 1;
if (x + 1 == y) F(y + 1), x = (y + 2 - x), F(x);
else F(x);
F(n), n -= 2;
}
printf("%d\n", res.size());
for (auto x : res) printf("%d ", x);
if (res.size()) puts("");
}
return 0;
}

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!