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

POJ 2945 Find the Clones Hash

时间:2014-11-07 11:18:00      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:poj   字符串hash   快排   

题目大意:给出一些字符串,问其中n个一样的有多少。


思路:看discuss里各种神奇的方法啊,什么map啊,什么Trie啊。这题不是一眼Hash么。。难道是我想错了?

任意hash方法将所有字符串hash然后排序,之后统计一下相同的有多少就行了,500+MS水过。。

PS:明天就是NOIP我这么水真的好(


CODE:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define MAX 20010
#define BASE 13
using namespace std;

int points,length;
char s[30];
unsigned long long hash[MAX];
int ans[MAX];

inline unsigned long long GetHash(char *s)
{
	unsigned long long re = 0;
	for(int i = 1; i <= length; ++i)
		re = re * BASE + s[i];
	return re;
}

inline void Initialize()
{
	memset(ans,0,sizeof(ans));
}

int main()
{
	//ios::sync_with_stdio(false);
	while(scanf("%d%d",&points,&length),points + length) {
		Initialize();
		for(int i = 1; i <= points; ++i) {
			scanf("%s",s + 1);
			hash[i] = GetHash(s);
		}
		sort(hash + 1,hash + points + 1);
		int start = 1;
		for(int i = 1; i <= points; ++i)
			if(hash[i] != hash[start]) {
				++ans[i - start];
				start = i;
			}
		++ans[points - start + 1];
		for(int i = 1; i <= points; ++i)
			printf("%d\n",ans[i]);
	}
	return 0;
}


POJ 2945 Find the Clones Hash

标签:poj   字符串hash   快排   

原文地址:http://blog.csdn.net/jiangyuze831/article/details/40889717

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