zoukankan      html  css  js  c++  java
  • 1071 Speech Patterns stl--map

    People often have a preference among synonyms of the same word. For example, some may prefer "the police", while others may prefer "the cops". Analyzing such patterns can help to narrow down a speaker's identity, which is useful when validating, for example, whether it's still the same person behind an online avatar.

    Now given a paragraph of text sampled from someone's speech, can you find the person's most commonly used word?

    Input Specification:

    Each input file contains one test case. For each case, there is one line of text no more than 1048576 characters in length, terminated by a carriage return  . The input contains at least one alphanumerical character, i.e., one character from the set [0-9 A-Z a-z].

    Output Specification:

    For each test case, print in one line the most commonly occurring word in the input text, followed by a space and the number of times it has occurred in the input. If there are more than one such words, print the lexicographically smallest one. The word should be printed in all lower case. Here a "word" is defined as a continuous sequence of alphanumerical characters separated by non-alphanumerical characters or the line beginning/end.

    Note that words are case insensitive.

    Sample Input:

    Can1: "Can a can can a can?  It can!"
    

    Sample Output:

    can 5
    
    /*
        Name:
        Copyright:
        Author:  流照君
        Date: 2019/8/21 10:01:28
        Description:
    */
    #include <iostream>
    #include<string>
    #include <algorithm>
    #include <vector>
    #include<map> 
    #define inf 0x3f3f3f3f
    using namespace std;
    typedef long long ll;
    map<string,ll> m;
    string s,s1;
    int main(int argc, char** argv)//柳神就是高啊 
    {
        //freopen("in.txt", "r", stdin);
        //freopen("out.txt", "w", stdout);
    	getline(cin,s);
        for(auto i=0;i<s.length();i++)
        {
        	if(isalnum(s[i]))//判断s[i]是否由大小写字母或数字组成 
        	{
        		s[i]=tolower(s[i]);//转小写 
        		s1=s1+s[i];
    		}
    		if(!isalnum(s[i])||i==s.length()-1)
    		{
    			if(s1.size()!=0)
    			m[s1]++;
    			s1="";
    		}
    	}
    	ll mm=1;
    	//auto it1=m.begin();
    	for(auto it=m.begin();it!=m.end();it++)
    	{
    		if(it->second>mm)
    		{
    			s=it->first;
    			mm=it->second;
    		}
    	}
        cout<<s<<" "<<mm<<endl;
        return 0;
    }
    

      

  • 相关阅读:
    SQL Server -使用表触发器记录表插入,更新,删除行数
    利用DataSet部分功能实现网站登录
    SQL Server排序的时候使null值排在最后
    大数据操作:删除和去重
    C#匿名类型序列化、反序列化
    Js调用asp.net后台代码
    C# Excel
    ajax的介绍
    MySQL数据库的知识总结
    ASP.NET MVC 入门系列教程
  • 原文地址:https://www.cnblogs.com/liuzhaojun/p/11387705.html
Copyright © 2011-2022 走看看