Equations—HDU_1496(巧用Hash)

HDU—1496

在这里插入图片描述
题意:求有多少种解!

#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <set>
#include <map>
#include <queue>
#include <utility>
#include <stack>
#include <list>
#include <vector>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include <ctype.h>
using namespace std;

int hash[3000005];

int main()
{
    int a, b, c, d, x1, x2, x3, x4, res;
    while (~scanf ("%d%d%d%d", &a, &b, &c, &d))
    {
		if (a > 0 && b > 0 && c > 0 && d > 0 || a < 0 && b < 0 && c < 0 && d < 0)    //都是同号必定无解,木有这个超时
		{
			puts ("0");
			continue;
		}
        memset (hash, 0, sizeof(hash));
        res = 0;
        for (x1 = 1; x1 < 101; x1++)    //hash令四重循环变成二重,复杂度大大减少
			for (x2 = 1; x2 < 101; x2++)
				hash[a*x1*x1+b*x2*x2+2000000]++;
		for (x3 = 1; x3 < 101; x3++)
			for (x4 = 1; x4 < 101; x4++)
					res += hash[(0-(c*x3*x3+d*x4*x4))+2000000];
		res *= 16;
   //因为正负号不同不影响x平方的效果,所以直接枚举正数,最后乘以2的4次方,表示正负不同的组合
        printf ("%d\n", res);
    }
    return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值