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;
    }
    

      

  • 相关阅读:
    linux使用rm-rf删除之文件恢复
    性能测试常见瓶颈分析及调优方法
    性能压测QPS 和 TPS区别
    Linux查看系统性能
    Python中split()和split(" ")的区别
    Python-标准库之functools
    Python-内置函数_@propery、@classmethod、@staticmethod详解
    Python-类的内置方法中__repr__和__str__的区别
    Python-标准库之运算符替代函数Operator
    Python-标准库之迭代器-itertools
  • 原文地址:https://www.cnblogs.com/liuzhaojun/p/11387705.html
Copyright © 2011-2022 走看看