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

    至少做到我努力了
  • 相关阅读:
    51NOD 1773:A国的贸易——题解
    BZOJ4553:[HEOI2016/TJOI2016]序列——题解
    BZOJ4597:[SHOI2016]随机序列——题解
    BZOJ1858:[SCOI2010]序列操作——题解
    BZOJ5157 & 洛谷3970:[TJOI2014]上升子序列——题解
    BZOJ3173:[TJOI2013]最长上升子序列 & HDU3564:Another LIS——题解
    BZOJ4755: [JSOI2016]扭动的回文串——题解
    洛谷2000:拯救世界——题解
    PPP中的PAP和CHAP的区别
    Linux C 实现一个简单的线程池
  • 原文地址:https://www.cnblogs.com/chensunrise/p/3786391.html
Copyright © 2011-2022 走看看