1071 Speech Patterns

本文探讨了通过分析个人言语中词汇偏好来识别说话者身份的方法,这对于在线验证真实身份至关重要。文章介绍了如何从一段文本中找出最常使用的单词,并详细展示了实现这一目标的代码示例。

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 \n. 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.

字符串相关知识点总结:

·判断是否数字,字母:

#include <cctype>
isnumber(int _c);
isalnum(int _c);
isalpha(int _c);

 ·大小写转换

#include <cctype>
tolower(int _c);
toupper(int _c);

·字母数字转化

#include <iostream>
#include <sstream>
using namespace std;

string s="1234.4";
printf("%f",stof(s));

s="1234";
printf("%d",stoi(s));

a=1234;
cout<<to_string(a);

 

 1 #include <string>
 2 #include <iostream>
 3 #include <map>
 4 #include <cctype>
 5 using namespace std;
 6 
 7 int main(){
 8     string input;
 9     map<string,int> Mp;
10     
11     getline(cin, input);
12     string tmpStr;
13     for(int i=0;i<input.length();i++){
14         if(isalnum(input[i])){
15             tmpStr+=tolower(input[i]);
16             if(i==input.length()-1){
17                 Mp[tmpStr]++;
18             }
19         }else{
20             if(tmpStr.length()) Mp[tmpStr]++;
21             tmpStr.clear();
22         }
23     }
24     
25     string max; int maxTimes;
26     for(map<string,int>::iterator it=Mp.begin();it!=Mp.end();it++){
27         if(maxTimes<it->second){
28             maxTimes=it->second;
29             max=it->first;
30         }else if(maxTimes==it->second&&max>it->first){
31             max=it->first;
32         }
33     }
34     cout<<max<<" "<<maxTimes<<endl;
35 }

 

转载于:https://www.cnblogs.com/lokwongho/p/9967299.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值