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 number n - 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

3
AaA
7
bcAAcbc
6
aaBCCe

output

2
3
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.

题意

求最短的连续子串覆盖原串的所有元素

尺取法

维护两个端点,根据实际情况交替推进两个端点直到得出答案,这种操作很像是尺蠖(日本中称为尺取虫)爬行的方式顾得名。
1.初始两个端点
2.推进右端点直到满足条件,跳至第三步
3.推进左端点直到不满足条件,跳至第二步
4.重复2,3步直至右端点走完整个区间

尺取法适合连续区间的问题,用尺取法来优化,使复杂度降为了O(n)。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include<iostream>
#include<cstring>
#define MAXN 100005
using namespace std;
char str[MAXN];
int vis[200];
int n;
int num;
int ans;
int main(){
int l, r;
int cnt;
while(cin>>n){
getchar();
ans = 0x3f3f3f3f;
memset(vis,0,sizeof(vis));
num = 0;
for(int i = 1;i <= n;i++){
scanf("%c",&str[i]);
if(vis[str[i]]==0){
vis[str[i]]++;
num++;
}
}
memset(vis,0,sizeof(vis));
cnt = 0;
l = r = 1;
while(1){
if(r > n) break;
while(cnt < num){
if(r > n) break;
if(vis[str[r]] == 0){
cnt++;
}
vis[str[r]]++;
r++;
}
while(cnt >= num){
ans = ans > (r-l) ? (r-l):ans;
vis[str[l]]--;
if(vis[str[l]]==0)
cnt--;
l++;
}
}
printf("%d\n",ans);
}
return 0;
}

留言

2016-07-28

⬆︎TOP