1. 程式人生 > >藍橋杯 8四平方和

藍橋杯 8四平方和

這裡寫圖片描述

思路:一開始我用了四個迴圈,但是這個有超時的危險,於是,d可以由a,b,c,n推出來;
程式碼:

#include<cstdio>
#include<algorithm>
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;
void pan(int n)
{
    int a,b,c;
    double d;
    for(a=0; a<=sqrt(n); a++)
    {
        for(b=0; b<=sqrt
(n); b++) { for(c=0; c<=sqrt(n); c++) { d=sqrt(n-(a*a+b*b+c*c)); if(d==(int)d) { printf("%d %d %d %d\n",a,b,c,(int)d); return; } } } } } int
main() { int n; while(~scanf("%d",&n)) { pan(n); } return 0; }