hdu 1334 Perfect Cubes

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1334 Perfect Cubes相关的知识,希望对你有一定的参考价值。

题目的意思是给出一个数N,寻找a,b,c,d使得a^3=b^3+c^3+d^3成立,其中a<=N,1<b<c<d。


#include<cstdio>

int main(){
    int n,a,b,c,d;
    while(~scanf("%d",&n)){
        for(a=6;a<=n;a++){//样例中a最小为6
            for(b=2;b<a;b++){
                for(c=b+1;c<a;c++){
                    for(d=c+1;d<a;d++)  if(a*a*a==b*b*b+c*c*c+d*d*d)    printf("Cube = %d, Triple = (%d,%d,%d)\n",a,b,c,d);
                }
            }
        }
    }
    return 0;
}

以上是关于hdu 1334 Perfect Cubes的主要内容,如果未能解决你的问题,请参考以下文章

poj 1543 Perfect Cubes (暴搜)

HDU3231拓扑排序

UVA 10733 - The Colored Cubes(Ploya)

UVaLive 3401 Colored Cubes (暴力)

Python之Cubes框架使用

Blocks to Cubes