codeforces 701 C. They Are Everywhere (尺取法)

来源:互联网 发布:h型钢重量计算软件 编辑:程序博客网 时间:2024/04/30 12:48
C. They Are Everywhere
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Sergei B., the young coach of Pokemons, has found the big house which consists of n flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each flat. Also, each flat is connected with the flat to the left and the flat to the right. Flat number 1 is only connected with the flat number 2 and the flat number n is only connected with the flat numbern - 1.

There is exactly one Pokemon of some type in each of these flats. Sergei B. asked residents of the house to let him enter their flats in order to catch Pokemons. After consulting the residents of the house decided to let Sergei B. enter one flat from the street, visit several flats and then go out from some flat. But they won't let him visit the same flat more than once.

Sergei B. was very pleased, and now he wants to visit as few flats as possible in order to collect Pokemons of all types that appear in this house. Your task is to help him and determine this minimum number of flats he has to visit.

Input

The first line contains the integer n (1 ≤ n ≤ 100 000) — the number of flats in the house.

The second line contains the row s with the length n, it consists of uppercase and lowercase letters of English alphabet, the i-th letter equals the type of Pokemon, which is in the flat number i.

Output

Print the minimum number of flats which Sergei B. should visit in order to catch Pokemons of all types which there are in the house.

Examples
input
3AaA
output
2
input
7bcAAcbc
output
3
input
6aaBCCe
output
5
Note

In the first test Sergei B. can begin, for example, from the flat number 1 and end in the flat number 2.

In the second test Sergei B. can begin, for example, from the flat number 4 and end in the flat number 6.

In the third test Sergei B. must begin from the
flat number 2 and end in the flat number 6.

题意:给一个字符串,问包含所有出现的种类的连续子字符串的长度
思路:嗯,开始不知道怎么下手,看题解,知道是尺取法,算是新学习的吧,
总结:
尺取法就是:
先找出符合条件的解,记录左右端点和答案,
再不断地左端点缩进,更新答案,右端点扩张
代码:
#include<cstdio>#include<cstring>#include<algorithm>using namespace std;char str[100010];int vis[55];//主要用于标记不同字符出现的次数,以更新左端点 int chang(char ch){if(ch>='a'&&ch<='z')return ch-'a';elsereturn ch-'A'+26;}int main(){int n,num=0;scanf("%d",&n);scanf("%s",str+1);memset(vis,0,sizeof(vis));for(int i=1;i<=n;i++)//不同字符种类 { if(!vis[chang(str[i])]) { num++; vis[chang(str[i])]=1; }}memset(vis,0,sizeof(vis));int ans=0,cnt=0,l=1,r;for(int i=1;i<=n;i++)//初始化左右端点和答案 {if(cnt==num)break; if(!vis[chang(str[i])])cnt++;vis[chang(str[i])]++;r=i;ans++;}while(r<=n){while(vis[chang(str[l])]>1)//左端点缩进 {vis[chang(str[l])]--;l++;}ans=min(ans,r-l+1);//更新答案 r++; //右端点扩张 if(r>n) break;//少加这一步就RE了 vis[chang(str[r])]++;}printf("%d\n",ans);return 0;}


0 0
原创粉丝点击