国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

POJ 1840-Eqs(哈希-五元方程組解的個數)

2019-11-09 19:22:10
字體:
來源:轉載
供稿:網友
Eqs
Time Limit: 5000MS Memory Limit: 65536K
Total Submissions: 16095 Accepted: 7902

Description

Consider equations having the following form: a1x13+ a2x23+ a3x33+ a4x43+ a5x53=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

Source

Romania OI 2002

題目意思:

有一個五元一次方程,給出五個系數,解的范圍是[-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再進行處理。
#include<iostream>#include<cstdio>#include<iomanip>#include<cmath>#include<cstdlib>#include<cstring>#include<algorithm>using namespace std;/*a1x13+ a2x23+ a3x33+ a4x43+ a5x53=0*/short ha[25000000];//左半部分的值int main(){#ifdef ONLINE_iUDGE#else    //freopen("F:/cb/read.txt","r",stdin);    //freopen("F:/cb/out.txt","w",stdout);#endif    ios::sync_with_stdio(false);    cin.tie(0);    memset(ha,0,sizeof(ha));    int a1,a2,a3,a4,a5;  //系數    while(cin>>a1>>a2>>a3>>a4>>a5)    {        int a,b,c,d,e,ans=0;        for(a=-50; a<=50; ++a)            for(b=-50; b<=50; ++b)                if(a!=0&&b!=0)                {                    int t=a*a*a*a1+b*b*b*a2;                    t=-t;                    if(t<0) t+=25000000;//負值                    ++ha[t];                }        for(c=-50; c<=50; ++c)            for(d=-50; d<=50; ++d)                for(e=-50; e<=50; ++e)                    if(c!=0&&d!=0&&e!=0)                    {                        int num=c*c*c*a3+d*d*d*a4+e*e*e*a5;                        if(num<0) num+=25000000;                        ans+=ha[num];                    }        cout<<ans<<endl;    }    return 0;}/*37 29 41 43 47*/
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 灯塔市| 乌拉特前旗| 达日县| 剑河县| 梁山县| 乐昌市| 抚远县| 璧山县| 抚州市| 定安县| 安远县| 崇义县| 克山县| 五常市| 临夏县| 宾阳县| 榆树市| 拉孜县| 滁州市| 云龙县| 仪征市| 蛟河市| 岫岩| 黄冈市| 双柏县| 宁明县| 建德市| 松原市| 呼图壁县| 雅江县| 吴桥县| 子洲县| 普安县| 马鞍山市| 永定县| 增城市| 高安市| 进贤县| 新干县| 西平县| 清原|