zoukankan      html  css  js  c++  java
  • codeforces 701C. They Are Everywhere(尺取法)

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

    分析:挑战149页,同类型题。让你统计最小走多少个房间,可以抓住所有同类型的宝可梦。————尺取法。

    /*************************************************************************
        > File Name: cfC.cpp
        > Author: 
        > Mail: 
        > Created Time: 2016年08月08日 星期一 13时42分35秒
     ************************************************************************/
    
    #include<iostream>
    #include<bits/stdc++.h>
    using namespace std;
    const int maxn = 1e5+7;
    set<char> all;
    map<char,int> mp;
    char a[maxn];
    
    int main()
    {
        int n;
        cin >> n;
        cin >> a;
        for(int i= 0; i < n ;i++)
        {
            all.insert(a[i]);
        }
        int len = all.size();
        //printf("len = %d
    ",len);
        int s = 0,t = 0, num = 0;
        mp.clear();
        int ans = n;
        for(;;)
        {
            while(t < n && num < len)
            {
                if(mp[a[t++]]++ == 0)
                {
                    num++;
                }
            }
            if(num < len) break;
            ans = min(ans,t-s);
            if(--mp[a[s++]] == 0)
            {
                num--;
            }
        }
        cout << ans << endl;
        return 0;
    }
  • 相关阅读:
    近段时间学习html和CSS的一些细碎总结
    循环队列
    【IOS】IOS高速入门之OC语法
    2014华为机试-字符串替换
    自己动手写操作系统--个人实践
    HBase学习(十四)LINUX下用Eclipse构建HBase开发环境
    IOS成长之路-Nsstring中搜索方法rangeOfString
    Java JDBC连接SQL Server2005错误:通过port 1433 连接到主机 localhost 的 TCP/IP 连接失败
    java 不同意同一账户不同IP 同一时候登录系统解决的方法 兼容IE Firefox
    十二.200多万元得到的创业教训--app名字是关键
  • 原文地址:https://www.cnblogs.com/PrayG/p/5749815.html
Copyright © 2011-2022 走看看