原题链接
不在自己位置上的数才需要换位置
若两个数刚好站在对方的位置,在第一轮就能换到自己的位置
下面说的的数组下标都是从1开始
第三种情况构成一个环。
结论:交换两轮即可得到答案序列
交换方法如下图
图中:节点代表数组的每个位置,节点旁边的数代表这个位置填的数。而这个数无论被换到哪个位置,它的目的位置(指向的节点)始终不会改变
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> PII;
const int N = 100010;
int a[N], tem[N], cnt, n, m;
bool st[N];
vector<PII> ans[2];
int main() {
cin >> n;
for (int i = 1; i <= n; i ++) cin >> a[i];
for (int i = 1; i <= n; i ++) {
if (a[i] == i || st[i]) continue;
cnt = 0;
int idx = i;
while (!st[idx]) {
st[idx] = 1;
tem[cnt ++] = idx;
idx = a[idx];
}
if (cnt == 2) {
ans[0].push_back({tem[0], tem[1]});
continue;
}
else {
for (int l = 1, r = cnt - 1; l < r; l ++, r --) {
ans[0].push_back({tem[l], tem[r]});
swap(tem[l], tem[r]);
}
for (int l = 0, r = cnt - 1; l < r; l ++, r --) {
ans[1].push_back({tem[l], tem[r]});
}
}
}
int res = 0;
for (int i = 0; i < 2; i ++)
res += ans[i].size() != 0;
cout << res << endl;
if (res) {
for (int i = 0; i < 2; i ++) {
if (ans[i].size()) {
cout << ans[i].size() << ' ';
for (auto t : ans[i])
cout << t.first << ' ' << t.second << ' ';
cout << endl;
}
}
}
return 0;
}