统计难题

Posted akpower

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计难题相关的知识,希望对你有一定的参考价值。

技术图片

 

 

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

  

以上是关于统计难题的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1251 统计难题

HDU 1251 统计难题

HDU 1251 统计难题

HDU 1251 统计难题(字典树)

统计难题HDU - 1251map打表或字典树字典树模板

HDU-1251统计难题 ,字典树