CF701C.They Are Everywhere

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Sergei B., the young coach of Pokemons, has found the big house which consists of nn 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 11 is only connected with the flat number 22 and the flat number nn is only connected with the flat number n1n-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.

输入格式

The first line contains the integer nn ( 1<=n<=1000001<=n<=100000 ) — the number of flats in the house.

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

输出格式

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.

输入输出样例

  • 输入#1

    3
    AaA
    

    输出#1

    2
    
  • 输入#2

    7
    bcAAcbc
    

    输出#2

    3
    
  • 输入#3

    6
    aaBCCe
    

    输出#3

    5
    

说明/提示

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

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

In the third test Sergei B. must begin from the flat number 22 and end in the flat number 66 .

首页