zoukankan      html  css  js  c++  java
  • Codeforces Round #364 (Div. 2) C

    Description

    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.

    题意:就是寻找最小的区间,它能包含该字符串所有字母

    我们设立起点和终点,l,r;

    l从该字母第一次出现开始,如果后面该字母再次出现,就移动到另外一个字母第一次出现的位置

    r从头遍历到尾,如果遍历符合条件就更新一次

    #include<cstdio>
    #include<cstring>
    #include<cctype>
    #include<cmath>
    #include<set>
    #include<map>
    #include<list>
    #include<queue>
    #include<deque>
    #include<stack>
    #include<string>
    #include<vector>
    #include<iostream>
    #include<algorithm>
    #include<stdlib.h>
    using namespace std;
    int flag[100005];
    int main()
    {
        set<char>q;
        int a[100005];
        string s;
        int n;
        int sum;
        int l=0,r=0;
        int len=(1<<30);
        cin>>n;
        cin>>s;
        for(int i=0;i<n;i++)
        {
            q.insert(s[i]);
        }
        sum=q.size();
        for(int r=0;r<n;)
        {
            int cot=s[r]-'0';
            flag[cot]++;
            if(flag[cot]==1)
            {
                sum--;
            }
       //     cout<<flag[cot]<<"B"<<endl;
            //cout<<flag[s[l]
            while(flag[s[l]-'0']>1)
            {
                flag[s[l]-'0']--;
                l++;
              //  cout<<l<<"A"<<endl;
            }
            if(sum==0)
            {
            len=min(len,r-l+1);
         //   cout<<r<<endl;
          //  cout<<l<<endl;
            }
            r++;
         //   cout<<r<<"A"<<endl;
        }
        cout<<len<<endl;
        return 0;
    }
    

      

  • 相关阅读:
    移动app测试
    centos7中tomcat安装步骤
    linux下搭建数据库
    Linux 学习笔记
    vi编辑器 使用表
    python-Xml 实战
    python-Excel 实战
    手写HashMap
    volatile关键字解析
    两个栈实现队列——优化版
  • 原文地址:https://www.cnblogs.com/yinghualuowu/p/5701136.html
Copyright © 2011-2022 走看看