【Codeforces】-#222A-KShooshuns and Sequence(思维)

A. Shooshuns and Sequence
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

One day shooshuns found a sequence of n integers, written on a blackboard. The shooshuns can perform one operation with it, the operation consists of two steps:

  1. Find the number that goes k-th in the current sequence and add the same number to the end of the sequence;
  2. Delete the first number of the current sequence.

The shooshuns wonder after how many operations all numbers on the board will be the same and whether all numbers will ever be the same.

Input

The first line contains two space-separated integers n and k (1 ≤ k ≤ n ≤ 105).

The second line contains n space-separated integers: a1, a2, ..., an (1 ≤ ai ≤ 105) — the sequence that the shooshuns found.

Output

Print the minimum number of operations, required for all numbers on the blackboard to become the same. If it is impossible to achieve, print -1.

Examples
input
3 2
3 1 1
output
1
input
3 1
3 1 1
output
-1
Note

In the first test case after the first operation the blackboard will have sequence [1, 1, 1]. So, one operation is enough to make all numbers the same. Thus, the answer equals one.

In the second test case the sequence will never consist of the same numbers. It will always contain at least two distinct numbers 3 and 1. Thus, the answer equals -1.


K个数之后如果又不相同的就不可能使整行数相同。再考虑k之后全部相同,则找到离k最近的不同于k的数,下标为几这前面的都要消去,就需要几次。

注意:k个数前数都一样就判断到了j=1,此时是输出0

<span style="font-size:10px;">#include<cstdio>
int main()
{
	int n,k,num=0;
	int a[100100];
	scanf("%d%d",&n,&k);
	for(int i=1;i<=n;i++)
		scanf("%d",&a[i]);
	for(int i=k;i<=n;i++)
	{
		if(a[i]!=a[k])
		{
			printf("-1\n");
			num=1;
			break;
		}
	}
	if(num!=1)	
	
	{
		for(int j=k;j>=1;j--)
		{
			if(a[j]!=a[k])
			{
				printf("%d\n",j);
				break;
			}
			if(j==1)
				printf("0\n");
			
		}
	}
	return 0;
}</span>

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值