A Simple Job

描述

Institute of Computational Linguistics (ICL), Peking University is an interdisciplinary institute of science and liberal arts, it focuses primarily on the fundamental researches and applications of language information processing. The research of ICL covers a wide range of areas, including Chinese syntax, language parsing, computational lexicography, semantic dictionaries, computational semantics and application systems.

Professor X is working for ICL. His little daughter Jane is 9 years old and has learned something about programming. She is always very interested in her daddy's research. During this summer vacation, she took a free programming and algorithm course for kids provided by the School of EECS, Peking University. When the course was finished, she said to Professor X: "Daddy, I just learned a lot of fancy algorithms. Now I can help you! Please give me something to research on!" Professor X laughed and said:"Ok, let's start from a simple job. I will give you a lot of text, you should tell me which phrase is most frequently used in the text."

Please help Jane to write a program to do the job.

输入

There are no more than 20 test cases.

In each case, there are one or more lines of text ended by a line of "####". The text includes words, spaces, ','s and '.'s. A word consists of only lowercase letters. Two adjacent words make a "phrase". Two words which there are just one or more spaces between them are considered adjacent. No word is split across two lines and two words which belong to different lines can't form a phrase. Two phrases which the only difference between them is the number of spaces, are considered the same.

Please note that the maximum length of a line is 500 characters, and there are at most 50 lines in a test case. It's guaranteed that there are at least 1 phrase in each test case.

输出

For each test case, print the most frequently used phrase and the number of times it appears, separated by a ':' . If there are more than one choice, print the one which has the smallest dictionary order. Please note that if there are more than one spaces between the two words of a phrase, just keep one space.

样例输入
above,all ,above all good at good at good
at good at above all me this is
####
world hello ok
####
样例输出
at good:3

hello ok:1

#include <iostream> #include <cmath> #include <vector> #include <cstdlib> #include <cstdio> #include <climits> #include <ctime> #include <cstring> #include <queue> #include <stack> #include <list> #include <algorithm> #include <map> #include <set> #define LL long long #define Pr pair<int,int> #define fread(ch) freopen(ch,"r",stdin) #define fwrite(ch) freopen(ch,"w",stdout) using namespace std; const int INF = 0x3f3f3f3f; const int mod = 1e9+7; const double eps = 1e-8; const int maxn = 11234; map <string,int> mp; char as[555]; char pre[555]; char now[555]; char tmp[555]; char str[555]; int ans; bool Ischar(char ch) { return ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z'); } int sread(int &pos) { while(str[pos] && !Ischar(str[pos])) ++pos; if(!str[pos]) return 0; int p1 = 0; while(str[pos] && Ischar(str[pos])) now[p1++] = str[pos++]; now[p1] = 0; while(str[pos] && str[pos] == ' ') ++pos; return (str[pos] && Ischar(str[pos]))? 1: -1; } int main() { while(gets(str)) { mp.clear(); ans = -1; while(str[0] != '#') { int pos = 0; int p1,p2; pre[1] = '.'; pre[2] = 0; int k; while((k = sread(pos))) { //                printf("%d ",pos); //                printf("%s ",now); //                printf("%d\n",k); bool can = 1; for(int i = 0; pre[i]; ++i) { if(!Ischar(pre[i])) { can = 0; break; } } if(can) { strcpy(tmp,pre); int p1 = strlen(pre); tmp[p1++] = ' '; strcpy(tmp+p1,now); mp[tmp]++; if(ans < mp[tmp] || (ans == mp[tmp] && strcmp(as,tmp) > 0)) { ans = mp[tmp]; strcpy(as,tmp); } } if(k == 1) strcpy(pre,now); else pre[0] = '.',pre[1] = 0; } gets(str); } printf("%s:%d\n",as,ans); } return 0; } #include <cstdio> #include <cstring> #include <algorithm> using namespace std; struct list { int d; char ch[2][501]; }a[12500]; int cmp(struct list x,struct list y) { if(x.d>y.d) { return 1; } else if(x.d==y.d&&(strcmp(x.ch[0],y.ch[0])<0||(strcmp(x.ch[0],y.ch[0])==0&&strcmp(x.ch[1],y.ch[1])<0))) { return 1; } else { return 0; } } int main() { int i,i1,top=0; char ch[501],s1[501],s2[501],flag; while(gets(ch)!=NULL) { flag=0; i1=0; if(strcmp(ch,"####")==0) { sort(a,a+top,cmp); printf("%s %s:%d\n",a[0].ch[0],a[0].ch[1],a[0].d); top=0; continue; } for(i=0;ch[i]!='\0';i++) { if(ch[i]==' '||ch[i]==','||ch[i]=='.') { if(flag==1&&i1!=0) { s2[i1]='\0'; for(i1=0;top>i1;i1++) { if(strcmp(a[i1].ch[0],s1)==0&&strcmp(a[i1].ch[1],s2)==0) { a[i1].d++; break; } } if(i1==top) { strcpy(a[i1].ch[0],s1); strcpy(a[i1].ch[1],s2); a[i1].d=1; top++; } strcpy(s1,s2); } else if(flag==0&&i1!=0) { flag++; s2[i1]='\0'; strcpy(s1,s2); } if(ch[i]==','||ch[i]=='.') { flag=0; } i1=0; continue; } s2[i1]=ch[i]; i1++; } if(flag==1&&i1!=0) { s2[i1]='\0'; for(i1=0;top>i1;i1++) { if(strcmp(a[i1].ch[0],s1)==0&&strcmp(a[i1].ch[1],s2)==0) { a[i1].d++; break; } } if(i1==top) { strcpy(a[i1].ch[0],s1); strcpy(a[i1].ch[1],s2); a[i1].d=1; top++; } strcpy(s1,s2); } } return 0; }

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/509206.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

keepalived+nginx保持高可用配置

安装nginx、keepalived nginx安装 keepalived安装与添加服务在/etc/keepalived目录下新建nginx_check.sh&#xff08;两台服务器都需要&#xff09; 配置keepalived.conf: #配置邮箱 global_defs {notification_email {# acassenfirewall.loc# failoverfirewall.loc# sysadmin…

How-To-Ask-Questions-The-Smart-Way

转自&#xff1a;https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/master/README-zh_CN.md 提问的智慧 How To Ask Questions The Smart Way Copyright © 2001,2006,2014 Eric S. Raymond, Rick Moen 本指南英文版版权为 Eric S. Raymond, Rick Mo…

The Book List

描述 The history of Peking University Library is as long as the history of Peking University. It was build in 1898. At the end of year 2015, it had about 11,000 thousand volumes of books, among which 8,000 thousand volumes were paper books and the others w…

nginx+keepalived详细配置信息

Nginx Keepalived 第一步&#xff1a; 下载keepalived地址&#xff1a;http://www.keepalived.org/download.html 解压安装&#xff1a; tar -zxvf keepalived-1.2.18.tar.gz -C /usr/local/ yum install -y openssl openssl-devel&#xff08;需要安装一个软件包&#xff09…

毕业3年,为何技术能力相差越来越大?

导读&#xff1a;毕业三年&#xff0c;每个人在技术能力跑道上&#xff0c;有了或大或小的差距。有些人永远在重复的劳动&#xff0c;有些人却能从中总结和解决问题。今天我们来探讨下&#xff0c;如何避免让战术上的勤奋掩盖战略上的懒惰&#xff0c;使得真正掌握好的知识点慢…

Periodic Signal

描述 Profess X is an expert in signal processing. He has a device which can send a particular 1 second signal repeatedly. The signal is A0 ... An-1 under n Hz sampling. One day, the device fell on the ground accidentally. Profess X wanted to check whether …

boost stacktrace堆栈打印

在windows下最方便的是minidump,其他2个平台麻烦不少,google-breakpad使用起来又太麻烦. 最近boost1.65版本出了个stacktrace使用起来简单方便,只是无法看实际数据,对于快速定位BUG还是很有帮助的. 要注意的是异常的处理需要写文件,应用重启之后再读取查看~ 用其他应用读取或…

redis优秀文章

https://www.cnblogs.com/PatrickLiu/tag/Redis/

Countries

描述 There are two antagonistic countries, country A and country B. They are in a war, and keep launching missiles towards each other. It is known that country A will launch N missiles. The i-th missile will be launched at time Tai. It flies uniformly and …

Windows下dump文件生成与分析

一、 生成Dump文件方式 1.1任务管理器 在程序崩溃后&#xff0c;先不关闭程序&#xff0c;在任务管理器中找到该程序对应的进程。右键—>创建转储文件。 此时会在默认的目录下创建出一个dump文件。 可以看出&#xff0c;此种方法只适用于程序崩溃但没有立即自行退出的情…

HTTP与HTTPS的区别[转载]

优秀文章链接&#xff1a;https://www.cnblogs.com/wqhwe/p/5407468.html

迪杰斯特拉算法 两点间最短路径的选择

百度首页 登录 注册 新闻网页贴吧知道音乐图片视频地图百科文库进入词条搜索词条帮助首页分类艺术科学自然文化地理生活社会人物经济体育历史特色百科历史上的今天数字博物馆史记2015城市百科二战百科非遗百科用户蝌蚪团燃梦计划百科任务百科商城权威合作合作模式常见问题联系方…

TLS--线程局部存储

转自&#xff1a;https://blog.csdn.net/u013761036/article/details/54960277 这个东西并不陌生了&#xff0c;之前写过了一个关于这个的应用&#xff0c;利用静态TLS姿势实现代码段静态加密免杀或者所谓的加壳思路。地址在这:http://blog.csdn.net/u013761036/article/detai…

小白科普:Netty有什么用?【转载】

优秀文章链接&#xff1a;https://blog.csdn.net/bjweimengshu/article/details/78786315#commentBox

TLS线程局部存储--thread_specific_ptr

大多数函数都不是可重入的。这也就是说在某一个线程已经调用了一个函数时&#xff0c;如果你再调用同一个函数&#xff0c;那么这样是不安全的。一个不可重入的函数通过连续的调用来保存静态变量或者是返回一个指向静态数据的指针。 举例来说&#xff0c;std::strtok就是不可重…

icpc青岛栈

1001-I Count Two Three 题意&#xff1a;给出一个整数n, 找出一个大于等于n的最小整数m, 使得m可以表示为2a3b5c7d。 分析&#xff1a;很好想&#xff0c;因为数据是在1~1e9之间的&#xff0c;所以直接将所有2a3b5c7d的形式且小于1e9的数字打表&#xff0c;然后二分搜索出大于…

互斥锁和条件变量

转自&#xff1a;https://www.jb51.net/article/102764.htm mutex体现的是一种竞争&#xff0c;我离开了&#xff0c;通知你进来。 cond体现的是一种协作&#xff0c;我准备好了&#xff0c;通知你开始吧。 互斥锁一个明显的缺点是它只有两种状态&#xff1a;锁定和非锁定。…

jetty优秀文章转载

地址&#xff1a;https://www.cnblogs.com/yiwangzhibujian/p/5845623.html

UNet详解(转)

Unity Networking&#xff08;UNet&#xff09;函数时序统计和分析 背景和概述 Unity Networking是官方自Unity5.1以来推出的新网络通信解决方案。UNet是非官方但更民间更精简的叫法。 本文需要读者有基础的UNet知识。 了解UNet时序&#xff0c;可以更好更严谨地编写UNet相…

GET和POST两种基本请求方法的区别

转载地址:https://www.cnblogs.com/logsharing/p/8448446.html GET和POST是HTTP请求的两种基本方法&#xff0c;要说它们的区别&#xff0c;接触过WEB开发的人都能说出一二。 最直观的区别就是GET把参数包含在URL中&#xff0c;POST通过request body传递参数。 你可能自己写过…