zoukankan      html  css  js  c++  java
  • hust 1054 Broken Keyboard

    题目描述

    Bruce Force's keyboard is broken, only a few keys are still working. Bruce has figured out he can still type texts by switching the keyboard layout whenever he needs to type a letter which is currently not mapped to any of the m working keys of the keyboard. You are given a text that Bruce wishes to type, and he asks you if you can tell him the maximum number of consecutive characters in the text which can be typed without having to switch the keyboard layout. For simplicity, we assume that each key of the keyboard will be mapped to exactly one character, and it is not possible to type other characters by combination of different keys. This means that Bruce wants to know the length of the largest substring of the text which consists of at most m different characters.

    输入

    The input contains several test cases, each test case consisting of two lines. The first line of each test case contains the number m (1 ≤ m ≤ 128), which specifies how many keys on the keyboard are still working. The second line of each test case contains the text which Bruce wants to type. You may assume that the length of this text does not exceed 1 million characters. Note that the input may contain space characters, which should be handled like any other character. The last test case is followed by a line containing one zero.

    输出

    For each test case, print one line with the length of the largest substring of the text which consists of at most m different characters.

    样例输入

    5
    This can't be solved by brute force.
    1
    Mississippi
    0
    

    样例输出

    7
    2

    题目的意思是求最长的,只包含m中字符的字串的长度,很简单,用队列的思想
    #include<map>
    #include<set>
    #include<stack>
    #include<queue>
    #include<cmath>
    #include<vector>
    #include<cstdio>
    #include<string>
    #include<cstring>
    #include<cstdlib>
    #include<iostream>
    #include<algorithm>
    #define  inf 0x0f0f0f0f
     
    using namespace std;
    const int maxn=10000000+10;
    char str[maxn];
    int vis[1000];
     
    int main()
    {
        int n;
        while(scanf("%d",&n)!=EOF && n)
        {
            getchar();
            gets(str);
            int L=strlen(str);
            int st=0,ed=0;
            memset(vis,0,sizeof(vis));
            int m=0;
            int ans=0;
            while(ed<L)
            {
                if(vis[str[ed]]==0) m++;
                vis[str[ed]]++;
                while(m>n)
                {
                    if(vis[str[st]]-1>0)
                    {
                        vis[str[st]]--;
                    }
                    else if(vis[str[st]]-1==0)
                    {
                        vis[str[st]]--;
                        m--;
                    }
                    st++;
                }
                ed++;
                ans=max(ans,ed-st);
            }
            printf("%d
    ",ans);
        }
        return 0;
    }

    作者 chensunrise

    至少做到我努力了
  • 相关阅读:
    redis 基础知识
    vue + django 项目部署
    django 的静态资源
    uwsgi 与 supervisor
    django基础之orm(models)初识
    django基础之模板Template
    django基础知识之视图views
    django基础知识之django介绍及url
    django基础之Web框架介绍
    mysql之pymysql模块相关
  • 原文地址:https://www.cnblogs.com/chensunrise/p/3786391.html
Copyright © 2011-2022 走看看