2021昆明 J Parallel Sort

原题链接
不在自己位置上的数才需要换位置
若两个数刚好站在对方的位置,在第一轮就能换到自己的位置

下面说的的数组下标都是从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;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值