bzoj 1643: [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪枚举
Posted lokiii
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1643: [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪枚举相关的知识,希望对你有一定的参考价值。
4维枚举平方小于10000的数,相加等于n则ans++
#include<iostream>
#include<cstdio>
using namespace std;
const int N=105;
int n,a[N],ans;
int main()
{
scanf("%d",&n);
for(int i=1;i<=100;i++)
a[i]=i*i;
for(int i=0;i<=100;i++)
for(int j=0;j<=100;j++)
for(int k=0;k<=100;k++)
for(int l=0;l<=100;l++)
if(a[i]+a[j]+a[k]+a[l]==n)
ans++;
printf("%d\n",ans);
return 0;
}
以上是关于bzoj 1643: [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪枚举的主要内容,如果未能解决你的问题,请参考以下文章
bzoj 1643: [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪枚举
bzoj1708[Usaco2007 Oct]Money奶牛的硬币*
bzoj1708:[Usaco2007 Oct]Money奶牛的硬币(完全背包
bzoj1708 [Usaco2007 Oct]Money奶牛的硬币 背包dp