F - F

Little Petya likes permutations a lot. Recently his mom has presented him permutation q1, q2, ..., qn of length n.

permutation a of length n is a sequence of integers a1, a2, ..., an (1 ≤ ai ≤ n), all integers there are distinct.

There is only one thing Petya likes more than permutations: playing with little Masha. As it turns out, Masha also has a permutation of length n. Petya decided to get the same permutation, whatever the cost may be. For that, he devised a game with the following rules:

  • Before the beginning of the game Petya writes permutation 1, 2, ..., n on the blackboard. After that Petya makes exactly k moves, which are described below.
  • During a move Petya tosses a coin. If the coin shows heads, he performs point 1, if the coin shows tails, he performs point 2.
    1. Let's assume that the board contains permutation p1, p2, ..., pn at the given moment. Then Petya removes the written permutation p from the board and writes another one instead: pq1, pq2, ..., pqn. In other words, Petya applies permutation q (which he has got from his mother) to permutation p.
    2. All actions are similar to point 1, except that Petya writes permutation ton the board, such that: tqi = pi for all i from 1 to n. In other words, Petya applies a permutation that is inverse to q to permutation p.

We know that after the k-th move the board contained Masha's permutation s1, s2, ..., sn. Besides, we know that throughout the game process Masha's permutation never occurred on the board before the k-th move. Note that the game has exactly k moves, that is, throughout the game the coin was tossed exactly k times.

Your task is to determine whether the described situation is possible or else state that Petya was mistaken somewhere. See samples and notes to them for a better understanding.

Input

The first line contains two integers n and k (1 ≤ n, k ≤ 100). The second line contains n space-separated integers q1, q2, ..., qn (1 ≤ qi ≤ n) — the permutation that Petya's got as a present. The third line contains Masha's permutation s, in the similar format.

It is guaranteed that the given sequences q and s are correct permutations.

Output

If the situation that is described in the statement is possible, print "YES" (without the quotes), otherwise print "NO" (without the quotes).

Example
Input
4 1
2 3 4 1
1 2 3 4
Output
NO
Input
4 1
4 3 1 2
3 4 2 1
Output
YES
Input
4 3
4 3 1 2
3 4 2 1
Output
YES
Input
4 2
4 3 1 2
2 1 4 3
Output
YES
Input
4 1
4 3 1 2
2 1 4 3
Output
NO
Note

In the first sample Masha's permutation coincides with the permutation that was written on the board before the beginning of the game. Consequently, that violates the condition that Masha's permutation never occurred on the board before k moves were performed.

In the second sample the described situation is possible, in case if after we toss a coin, we get tails.

In the third sample the possible coin tossing sequence is: heads-tails-tails.

In the fourth sample the possible coin tossing sequence is: heads-heads.


题意是,给q数列,和s数列。然后p数列初始为1-n。然后通过p[q[i]]=p[i],或者p[i]=p[q[i]]这两种变换,问有没有可能在k次变换后刚刚p数列为s数列。并且在这k次变换过程中,p数列不能等于s数列。p数列一开始就为s数列也不行。

:因为两个变换是相反的,所以可以通过两次分别两种变换来抵消。计算出p通过第一种变换要多少步可以达到s数列,然后第二种变换要多少步,然后分类讨论。


代码:

#include <string>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
using namespace std;
const int maxn=1010;
int pp[maxn],p[maxn];
int q[maxn],s[maxn];
int flag;
int main()
{
	int n,k;
	while(cin>>n>>k)
	{
		for(int i=1;i<=n;i++)
			cin>>q[i];
		for(int i=1;i<=n;i++)
			cin>>s[i];
		for(int i=1;i<=n;i++)
			pp[i]=p[i]=i;
		int ans=0;

		while(ans<=k)
		{
			flag=1;
			for(int i=1;i<=n;i++)
			{
				if(pp[i]!=s[i])
					flag=0;
			}
			if(flag) break;
			for(int i=1;i<=n;i++)
				pp[i]=p[q[i]];
			for(int  i=1;i<=n;i++)
				p[i]=pp[i];
            ans++;
		}
		for(int i=1;i<=n;i++)
			pp[i]=p[i]=i;
		int ans1=0;
		while(ans1<=k)
		{
			flag=1;
			for(int i=1;i<=n;i++)
			{
				if(pp[i]!=s[i])
					flag=0;
			}
			if(flag)
				break;
			for(int i=1;i<=n;i++)
				pp[q[i]]=p[i];
			for(int i=1;i<=n;i++)
				p[i]=pp[i];
			ans1++;
		}

         if(ans==0||ans1==0)
            cout<<"NO"<<endl;
        else if(k==1&&(ans==1||ans1==1))
            cout<<"YES"<<endl;
        else if(k!=1&&ans==1&&ans1==1)
            cout<<"NO"<<endl;
        else if(ans==k+1&&ans1==k+1)
            cout<<"NO"<<endl;
        else if((ans-k)%2==0&&ans<=k)
            cout<<"YES"<<endl;
        else if((ans1-k)%2==0&&ans1<=k)
            cout<<"YES"<<endl;
        else
            cout<<"NO"<<endl;
	}
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值