码迷,mamicode.com
首页 > 其他好文 > 详细

PAT (Advanced Level) 1071. Speech Patterns (25)

时间:2016-07-01 20:12:15      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

简单题。

#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<stack>
#include<queue>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;

char s[1048576+10];
string ans[1048576+10];
int tot;

bool g(char c)
{
    if(c>=a&&c<=z) return 1;
    if(c>=0&&c<=9) return 1;
    if(c>=A&&c<=Z) return 1;
    return 0;
}

int main()
{
    gets(s);
    for(int i=0;s[i];i++)
        if(s[i]>=A&&s[i]<=Z) s[i]=s[i]-A+a;
    string f=""; tot=0;
    for(int i=0;s[i];i++)
    {
        if(g(s[i])) f=f+s[i];
        else
        {
            if(f=="") continue;
            ans[tot++]=f;
            f="";
        }
    }
    if(f!="") ans[tot++]=f;
    sort(ans,ans+tot);
    int now=0,pre=0;
    string out;
    int num=0;

    while(1)
    {
        if(ans[now]==ans[pre]) now++;
        else
        {
            if(now-pre>num)
            {
                num=now-pre;
                out=ans[pre];
            }
            pre=now;
        }
        if(pre==tot) break;
    }

    cout<<out<<" "<<num<<endl;
    return 0;
}

 

PAT (Advanced Level) 1071. Speech Patterns (25)

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/5634029.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!