POJ

来源:互联网 发布:做淘宝客能挣钱吗2016 编辑:程序博客网 时间:2024/06/15 14:13

A - Eqs

Consider equations having the following form:
a1x1 3+ a2x2 3+ a3x3 3+ a4x4 3+ a5x5 3=0
The coefficients are given integers from the interval [-50,50].
It is consider a solution a system (x1, x2, x3, x4, x5) that verifies the equation, xi∈[-50,50], xi != 0, any i∈{1,2,3,4,5}.

Determine how many solutions satisfy the given equation.

Input

The only line of input contains the 5 coefficients a1, a2, a3, a4, a5, separated by blanks.

Output

The output will contain on the first line the number of the solutions for the given equation.

Sample Input

37 29 41 43 47

Sample Output

654

 

题目意思:

有一个五元一次方程,给出五个系数,解的范围是[-50,0)(0,50],求解的个数。

 

解题思路:

直接五层for循环肯定就爆了,所以原式变形成:-(a1x1^3+ a2x2^3)=a3x3^3+ a4x4^3+ a5x5^3=0

哈希数组的下标表示求出的数,数组的值表示这个数出现的次数(类似于桶排序的思想)。

①先求出等式左边的值,将对应下标哈希数组的值加1,因为2*50*50^4=25000000,所以最多有25000000种不同的值。

注意这个值可能为负,所以负数时要将其加上25000000再进行处理。

②然后枚举出等式右边的值,判断是否在出现过这个值,然后利用哈希数组将解的个数加上这个数出现的次数。

同样地这个值可能为负,所以负数时要将其加上25000000再进行处理。
其次,我们把sum作为下标,那么hash数组的上界就取决于a1 a2 x1 x2的组合,四个量的极端值均为50
因此上界为 50*50^3+50*50^3=12500000,由于sum也可能为负数,因此我们对hash[]的上界进行扩展,扩展到25000000,当sum<0时,我们令sum+=25000000存储到hash[],负数就改为正数表示了
由于数组很大,必须使用全局定义
同时由于数组很大,用int定义必然会MLE,因此要用char或者short定义数组,推荐short

 

 

 

#include <cstring>

#include <algorithm>

#include <iostream>

using namespace std;

int a1,a2,a3,a4,a5;

#define maxn 25000008

short hash[maxn*2];

int main()

{

    while(cin>>a1>>a2>>a3>>a4>>a5)

    {

        int i,j,k;

        for(i=-50;i<=50;i++)

        {

            if(i==0)

                continue;

            for(j=-50;j<=50;j++)

            {

                if(j==0)

                    continue;

                for(k=-50;k<=50;k++)

                {

                    if(k==0)

                        continue;

                    hash[i*i*i*a1+j*j*j*a2+k*k*k*a3+maxn]++;

                }

            }

        }

        long long sum=0;

        for(i=-50;i<=50;i++)

        {

            if(i==0)

                continue;

            for(j=-50;j<=50;j++)

            {

                if(j==0)

                    continue;

                sum+=hash[-i*i*i*a4-j*j*j*a5+maxn];

            }

        }

        cout<<sum<<endl;

    }

    return 0;

}