码迷,mamicode.com
首页 > 其他好文 > 详细

cf701C They Are Everywhere

时间:2016-07-23 13:39:31      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

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

 

这种sb题卡了我好久我真是。。。

题意给定一个10w的串,只包含英文字母且区分大小写,求 包含所有出现的字母的,长度最小的子串的长度。

我怎么一开始看到都没想到二分啊。。

显然二分+判定是可行的,知道长度的话开个52的数组然后扫过去,每次判定这一段是否满足条件。

虽然算法时间上限是nlogn*52,但是实际运行是远远达不到这个上限的

技术分享
 1 #include<cstdio>
 2 #include<iostream>
 3 #include<cstring>
 4 #include<cstdlib>
 5 #include<algorithm>
 6 #include<cmath>
 7 #include<queue>
 8 #include<deque>
 9 #include<set>
10 #include<map>
11 #include<ctime>
12 #define LL long long
13 #define inf 0x7ffffff
14 #define pa pair<int,int>
15 #define pi 3.1415926535897932384626433832795028841971
16 using namespace std;
17 inline LL read()
18 {
19     LL x=0,f=1;char ch=getchar();
20     while(ch<0||ch>9){if(ch==-)f=-1;ch=getchar();}
21     while(ch>=0&&ch<=9){x=x*10+ch-0;ch=getchar();}
22     return x*f;
23 }
24 inline void write(LL a)
25 {
26     if (a<0){printf("-");a=-a;}
27     if (a>=10)write(a/10);
28     putchar(a%10+0);
29 }
30 inline void writeln(LL a){write(a);printf("\n");}
31 int n,l,r,ans,mrk2[200];
32 int s[100010];
33 char ch[100010];
34 bool mrk[200];
35 inline bool jud(int x)
36 {
37     memset(mrk2,0,sizeof(mrk2));
38     for (int i=1;i<=n;i++)
39     {
40         mrk2[ch[i]+0]++;
41         if (i>x)mrk2[ch[i-x]+0]--;
42         bool mk=0;
43         for (int i=1;i<200;i++)
44         if (mrk[i])
45         if (!mrk2[i]){mk=1;break;}
46         if (!mk)return 1;
47     }
48     return 0;
49 }
50 int main()
51 {
52     n=read();
53     scanf("%s",ch+1);
54     for(int i=1;i<=n;i++)
55     {
56         mrk[ch[i]+0]=1;
57     }
58     l=1;r=n;
59     while (l<=r)
60     {
61         int mid=(l+r)>>1;
62         if (jud(mid)){ans=mid;r=mid-1;}
63         else l=mid+1;
64     }
65     printf("%d\n",ans);
66 }
cf701C

 

cf701C They Are Everywhere

标签:

原文地址:http://www.cnblogs.com/zhber/p/5698448.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!