B. Vika and the Bridge

B. Vika and the Bridge_第1张图片 

Example

input

5
5 2
1 1 2 1 1
7 3
1 2 3 3 3 2 1
6 6
1 2 3 4 5 6
8 4
1 2 3 4 2 3 1 4
3 1
1 1 1

output

0
1
2
2
0

B. Vika and the Bridge_第2张图片

解析:

        题意为每次只能踩相同颜色的木板,同时他有一次改变一块木板颜色的机会,问每种颜色的最大跨的步子长度中的最小值为多少。

        对于每种颜色,记录其每相邻两块之间距离的最大值和次大值,可以将最大值中间的一块别的颜色模板涂成这种颜色,所以每种颜色跨的步子的最大值 p 即为  max ( 最大值/2 ,次大值),然后结果即为所有 p 的最小值。

#include
using namespace std;
const int N=2e5+5;
int t,n,k,a[N];
int main(){
	scanf("%d",&t);
	while(t--){
		int res=0x3f3f3f3f;
		scanf("%d%d",&n,&k);
		vectorv[k+2];
		for(int i=1;i<=k;i++) v[i].push_back(0);	//开始插入起点 0 
		for(int i=1;i<=n;i++){
			scanf("%d",&a[i]);
			v[a[i]].push_back(i);
		}
		for(int i=1;i<=k;i++) v[i].push_back(n+1);	//放入终点 n+1 
		for(int i=1;i<=k;i++){
			if(v[i].size()<=2) continue;
			int f1=0,f2=0;
			for(int j=1;j=f1) f2=f1,f1=t;
				else if(t=f2) f2=t;
			}
			res=min(res,max((f1+1)/2,f2)-1);
		}
		printf("%d\n",res);
	}
	return 0;
}

你可能感兴趣的:(codeforces,算法,c++,数据结构,模拟)