P1586 四方定理
生活随笔
收集整理的這篇文章主要介紹了
P1586 四方定理
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目描述
四方定理是眾所周知的:任意一個正整數nn?,可以分解為不超過四個整數的平方和。例如:25=1^{2}+2^{2}+2^{2}+4^{2}25=12+22+22+42?,當然還有其他的分解方案,25=4^{2}+3^{2}25=42+32?和25=5^{2}25=52?。給定的正整數nn?,編程統計它能分解的方案總數。注意:25=4^{2}+3^{2}25=42+32?和25=3^{2}+4^{2}25=32+42?視為一種方案。
輸入輸出格式
輸入格式:
?
第一行為正整數tt?(t\le 100t≤100?),接下來tt?行,每行一個正整數nn?(n\le 32768n≤32768?)。
?
輸出格式:
?
對于每個正整數nn?,輸出方案總數。
?
輸入輸出樣例
輸入樣例#1:?復制 1 2003 輸出樣例#1:?復制 48#include <bits/stdc++.h> using namespace std; typedef long long ll; #define inf 2147483647 const ll INF = 0x3f3f3f3f3f3f3f3fll; #define ri register int template <class T> inline T min(T a, T b, T c) {return min(min(a, b), c); } template <class T> inline T max(T a, T b, T c) {return max(max(a, b), c); } template <class T> inline T min(T a, T b, T c, T d) {return min(min(a, b), min(c, d)); } template <class T> inline T max(T a, T b, T c, T d) {return max(max(a, b), max(c, d)); } #define scanf1(x) scanf("%d", &x) #define scanf2(x, y) scanf("%d%d", &x, &y) #define scanf3(x, y, z) scanf("%d%d%d", &x, &y, &z) #define scanf4(x, y, z, X) scanf("%d%d%d%d", &x, &y, &z, &X) #define pi acos(-1) #define me(x, y) memset(x, y, sizeof(x)); #define For(i, a, b) for (int i = a; i <= b; i++) #define FFor(i, a, b) for (int i = a; i >= b; i--) #define bug printf("***********\n"); #define mp make_pair #define pb push_back const int maxn = 10005; // name******************************* int f[33000][10]; int t; int n=32768; int ans=0; // function******************************//*************************************** int main() { // ios::sync_with_stdio(0); // cin.tie(0); // freopen("test.txt", "r", stdin);// freopen("outout.txt","w",stdout);me(f,0);f[0][0]=1;for(int i=1; i*i<=n; i++)for(int j=i*i; j<=n; j++)for(int k=1; k<=4; k++)f[j][k]+=f[j-i*i][k-1];cin>>t;while(t--){ans=0;cin>>n;For(i,1,4)ans+=f[n][i];cout<<ans<<endl;}return 0; }
轉載于:https://www.cnblogs.com/planche/p/8650454.html
總結
以上是生活随笔為你收集整理的P1586 四方定理的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 项目开发涉及循坏的小思路
- 下一篇: 408. Valid Word Abbr