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

统计难题

时间:2019-10-31 00:19:42      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:int   字符串   ios   ==   难题   cto   ace   bre   ++   

技术图片

 

 

#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<string.h>
#include<vector>
#include<cmath>
#include<string>
#include<map>
#include<queue>
using namespace std;
typedef long long ll;
map<string,int> m;

int main(){
	string s;
	char c;
	while(1){
		scanf("%c",&c);
		if(c==‘\n‘){//判断第一次回车 
			scanf("%c",&c);
			s.clear();
		}
		if(c==‘\n‘){//判断第二次回车 
			break;
		}
		s+=c;//累加字符串 
		m[s]++;//统计以所有可能的前缀的总词数 
	}
	string x;
	while(cin>>x){
		cout<<m[x]<<endl;//直接输出即可 
	}
	return 0;
}

  

统计难题

标签:int   字符串   ios   ==   难题   cto   ace   bre   ++   

原文地址:https://www.cnblogs.com/akpower/p/11768797.html

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