NYOJ-138 找球号2【Hash】

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=138

解题思路:

hash的简单入门题。

不懂的可以参考这篇文章,很好很强大。http://blog.csdn.net/v_JULY_v/article/details/6256463

通过这道题,学到了hash的简单应用。

hash的优势就在于能快速的查找海量数据,所以速度是hash存在的关键。这样就需要我们在实现hash的时候尽量提高它的速度,也就是用空间换时间。有了这点就可以了。

原来我的内存很小,所以我的程序一直超时。可是内存开大 以后,83s的程序变成了0.3秒。一百倍的差别!!!!!!!!!血的教训!!

代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<time.h>
#include<algorithm>
using namespace std;

#define N 1000010
#define CLR(arr, what) memset(arr, what, sizeof(arr))

const int fib = 111123;
int Key[N], Head[N], Next[N];
int top;

void add(int n)
{
	int temp;
	temp = n % fib;
	Key[top] = n;
	Next[top] = Head[temp];
	Head[temp] = top;
	top++;
}

int main()
{
	int ncase;
	char str[8];
	int num, number;
	bool flag;
	CLR(Key, 0);
	CLR(Head, -1);
	top = 0;
	flag = false;
	scanf("%d", &ncase);
	while(ncase--)
	{	
		scanf("%s", str);
		if(str[0] == 'A')
		{
			scanf("%d", &num);
			for(int i = 0; i < num; ++i)
			{
				scanf("%d", &number);
				add(number);
			}
		}
		else
		{
			scanf("%d", &num);
			for(int i = 0; i < num; ++i)
			{
				scanf("%d", &number);
				int temp = number % fib;
				for(int j = Head[temp]; j != -1; j = Next[j])
					if(Key[j] == number)
					{
						flag = true;
						break;
					}
					printf(flag == true ? "YES\n" : "NO\n");
					flag = false;
			}
		}
	}
	return 0;
}


你可能感兴趣的:(NYOJ-138 找球号2【Hash】)