Physical Education CodeForces - 53D

Vasya is a school PE teacher. Unlike other PE teachers, Vasya doesn't like it when the students stand in line according to their height. Instead, he demands that the children stand in the following order: a1, a2, ..., an, where ai is the height of the i-th student in the line and n is the number of students in the line. The children find it hard to keep in mind this strange arrangement, and today they formed the line in the following order: b1, b2, ..., bn, which upset Vasya immensely. Now Vasya wants to rearrange the children so that the resulting order is like this: a1, a2, ..., an. During each move Vasya can swap two people who stand next to each other in the line. Help Vasya, find the sequence of swaps leading to the arrangement Vasya needs. It is not required to minimize the number of moves.

Input

The first line contains an integer n (1 ≤ n ≤ 300) which is the number of students. The second line contains n space-separated integers ai (1 ≤ ai ≤ 109) which represent the height of the student occupying the i-th place must possess. The third line contains n space-separated integers bi (1 ≤ bi ≤ 109) which represent the height of the student occupying the i-th place in the initial arrangement. It is possible that some students possess similar heights. It is guaranteed that it is possible to arrange the children in the required order, i.e. a and b coincide as multisets.

Output

In the first line print an integer k (0 ≤ k ≤ 106) which is the number of moves. It is not required to minimize k but it must not exceed 106. Then print k lines each containing two space-separated integers. Line pi, pi + 1 (1 ≤ pi ≤ n - 1) means that Vasya should swap students occupying places pi and pi + 1.

Example
Input
4
1 2 3 2
3 2 1 2
Output
4
2 3
1 2
3 4
2 3
Input
2
1 100500
1 100500
Output
0


 题意 n个序列,a[n]与b[n],交换b[n]序列,让b[n]与a[n]相等  输出交换的次数,以及位置



#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;
const int M=310;
struct st
{
    int n;
    int pos;
}a[M],b[M];
int n;
int vis[M];//判断之前是否有b[n]与a[n]对应
typedef pair<int,int>P;
int main()
{
    while(~scanf("%d",&n))
    {
        memset(vis,0,sizeof(vis));
        for(int i=0;i<n;i++)
        {
            scanf("%d",&a[i].n);
            a[i].pos=i;
        }
        for(int i=0;i<n;i++)
        {
            scanf("%d",&b[i].n);
            for(int j=0;j<n;j++)//记录b[n]序列应该在a[n]序列的位置
            {
                if(a[j].n==b[i].n&&!vis[a[j].pos])
                {
                    b[i].pos=a[j].pos;
                    vis[a[j].pos]=1;
                    break;
                }
            }
        }
        int t;
        queue<P>s;//用于保存交换的下标值
        for(int i=n-1;i;i--)
        {
            for(int j=0;j<i;j++)
            {
                if(b[j].pos>b[j+1].pos)
                {
                    s.push(P(j+1,j+2));
                    t=b[j].pos;
                    b[j].pos=b[j+1].pos;
                    b[j+1].pos=t;
                }
            }
        }
        printf("%d\n",s.size());
        while(s.size())
        {
            P x=s.front();
            printf("%d %d\n",x.first,x.second);
            s.pop();
        }
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值