POJ 1840

#include<iostream>
using namespace std;

//**************常量定义*********************//
const __int64 MAX=18750000;
char Hash[2*MAX+1];
void SetUpHash(int coe[6])
{
	int x1,x2;
	__int64 key;
	for(x1=-50;x1<=50;x1++)
	{  
		if(0==x1)
		  continue;
		for(x2=-50;x2<=50;x2++)
		{  
			if(0==x2)
			continue;
			key=coe[1]*x1*x1*x1+coe[2]*x2*x2*x2+MAX;
			Hash[key]++;
		}
	}
}
int main()
{   
	int a[6];
    memset(Hash,0,sizeof(Hash));
	for(int i=1;i<6;i++)
		scanf("%d",&a[i]);
	SetUpHash(a);
	int x3,x4,x5;
	__int64 temp=0;
	__int64 count=0;
	for(x3=-50;x3<=50;x3++)
	{   
		if(0==x3)
		 continue;
		for(x4=-50;x4<=50;x4++)
		{
			if(0==x4)
				continue;
			for(x5=-50;x5<=50;x5++)
			{ 
				if(0==x5)
					continue;
				temp=MAX+(a[3]*x3*x3*x3+a[4]*x4*x4*x4+a[5]*x5*x5*x5);
				count+=Hash[temp];
			}
		}
	}
	printf("%d",count);
}



注意事项:

1.char Hash[2*MAX+1];Hash表定义为char类型,可以节约内存,char占用内存是short的一半,short是int的一半。

2.__int64 count=0;

   count+=Hash[temp];

   char类型会自动转化为int类型

3.

解题思路:

将方程移下位:a1x13+ a2x2= -(a3x33+ a4x43+ a5x53),当方程左边等于右边时,求得方程的一个解。

-(a3x33+ a4x43+ a5x53)项的范围是 [-3*50^4,3*50^4],所以MAX=3*50^4=18750000,即Hash表的长度必须定为2*MAX+1.

不然,如果MAX定义过小,MAX+(a[3]*x3*x3*x3+a[4]*x4*x4*x4+a[5]*x5*x5*x5)会小于0.



#include<iostream>
using namespace std;

//**************常量定义*********************//
const __int64 MAX=12500000;
short Hash[2*MAX+1];
void SetUpHash(int coe[6])
{
	int x1,x2;
	__int64 key;
	for(x1=-50;x1<=50;x1++)
	{  
		if(0==x1)
		  continue;
		for(x2=-50;x2<=50;x2++)
		{  
			if(0==x2)
			continue;
			key=coe[1]*x1*x1*x1+coe[2]*x2*x2*x2+MAX;
			Hash[key]++;
		}
	}
}
int main()
{   
	int a[6];
    memset(Hash,0,sizeof(Hash));
	for(int i=1;i<6;i++)
		scanf("%d",&a[i]);
	SetUpHash(a);
	int x3,x4,x5;
	__int64 temp=0;
	__int64 count=0;
	for(x3=-50;x3<=50;x3++)
	{   
		if(0==x3)
		 continue;
		for(x4=-50;x4<=50;x4++)
		{
			if(0==x4)
				continue;
			for(x5=-50;x5<=50;x5++)
			{ 
				if(0==x5)
					continue;
				temp=MAX+(a[3]*x3*x3*x3+a[4]*x4*x4*x4+a[5]*x5*x5*x5);
				if((temp>=0)&&(temp<=2*MAX)) count+=Hash[temp];
			}
		}
	}
	printf("%d",count);
}

因为: a1x1 3 + a2x2 3 的范围是-2*50^4~2*50^4.

所以coe[1]*x1*x1*x1+coe[2]*x2*x2*x2+MAX的范围是 0~4*50^4.

MAX+(a[3]*x3*x3*x3+a[4]*x4*x4*x4+a[5]*x5*x5*x5);的范围并不是0~4*50^4,所以,必须限制

if((temp>=0)&&(temp<=2*MAX)) count+=Hash[temp];否则,

temp=MAX+(a[3]*x3*x3*x3+a[4]*x4*x4*x4+a[5]*x5*x5*x5);可能小于0


哈希表,采用拉链法来解决冲突

#include<iostream>
using namespace std;

//******************常量定义**************//
__int64 Myabs(__int64 x)
{
	if(x<0) return -x;
	else
		return x;
}
const int M=3999;
struct Node
{
   __int64 sum;//前两项和
     short times;//重复的次数
	 Node* next;
};
Node* Hash[M+1];

void SetUpHash(int a[6])
{
	__int64 sum=0;
	int key;
	memset(Hash,0,sizeof(Hash));//初始化
	for(int x1=-50;x1<=50;x1++)
	{
		if(0==x1)
			continue;
		for(int x2=-50;x2<=50;x2++)
		{
			if(0==x2)
				continue;
			sum=-(a[1]*x1*x1*x1+a[2]*x2*x2*x2);
			key=Myabs(sum)%M;
			if(NULL==Hash[key])
			{
				Node* temp=new Node;
				temp->sum=sum;
				temp->times=1;
				temp->next=NULL;
				Hash[key]=temp;
			}
			else
			{
				Node* q=Hash[key];
				Node* p=NULL;
				bool flag=false;
				while(q)
				{
					if(q->sum==sum)
					{
						q->times++;
						flag=true;
						break;
					}
					else
					{
						p=q;
						q=q->next;
					}
				}
				if(!flag)
				{
					Node* tmp=new Node;
					tmp->next=NULL;
					tmp->sum=sum;
					tmp->times=1;
					p->next=tmp;
				}

			}
		}
	}
}
int main()
{   
	//初始化
	for(int i=0;i<M+1;i++)
		Hash[i]=NULL;
	int a[6];
	//输入系数
	for(int i=1;i<=5;i++)
	   scanf("%d",&a[i]);
	SetUpHash(a);
	int x3,x4,x5;
	__int64 sum;
	int key,count=0;
	for(x3=-50;x3<=50;x3++)
	{
		if(0==x3)
		continue;
		for(x4=-50;x4<=50;x4++)
		{
			if(0==x4)
			  continue;
			for(x5=-50;x5<=50;x5++)
			{
				if(0==x5)
				 continue;
				 sum=a[3]*x3*x3*x3+a[4]*x4*x4*x4+a[5]*x5*x5*x5;
				 key=Myabs(sum)%M;
				 if(NULL==Hash[key])
					 continue;
				 else
				 {
					 Node* current=Hash[key];
					 while(current)
					 {
						 if(current->sum==sum)
						 {
						 	count+=current->times;
							break;
						 }
						 current=current->next;
					 }
				 }

			}
		}
	}
	printf("%d",count);

}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值