Codeforces #364(Div.2)C.They Are Everywhere【思维】

来源:互联网 发布:如何成为一个网络作家 编辑:程序博客网 时间:2024/06/08 11:44

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 ofn 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, thei-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

3
AaA
Output
2
Input
7
bcAAcbc
Output
3
Input
6
aaBCCe
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.

 

题目大意:

给你n个长度的字符串,问你一个最小区间,能够包含所有种类的字母。


思路:


不断维护起点即可。


Ac代码:

#include<stdio.h>#include<string.h>#include<map>using namespace std;char a[1000000];int vis[150];int main(){    int n;    while(~scanf("%d",&n))    {        scanf("%s",a);        int ans=n;        int cont=0;        memset(vis,0,sizeof(vis));        for(int i=0;i<n;i++)        {            if(vis[a[i]]==0)            {                vis[a[i]]=1;cont++;            }        }        memset(vis,0,sizeof(vis));        int l=0;        int contz=0;        for(int i=0;i<n;i++)        {            if(vis[a[i]]==0)            {                vis[a[i]]=1;                contz++;            }            else            {                vis[a[i]]++;                while(vis[a[l]]>1&&l<i)                {                    vis[a[l]]--;                    l++;                }            }            if(contz==cont)ans=min(ans,i-l+1);        }        printf("%d\n",ans);    }}



0 0