bzoj1643 / P2666 [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪

Posted kafuuchino

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj1643 / P2666 [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪相关的知识,希望对你有一定的参考价值。

[Usaco2007 Oct]Bessie‘s Secret Pasture 贝茜的秘密草坪

简单的dfs题

枚举前3个完全平方数,判断最后一个是不是完全平方数,统计合法方案数即可。

(zz选手竟把数据看成<=1e9)

技术分享图片
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 using namespace std;
 6 int n,ans;
 7 void dfs(int t,int d){
 8     if(d==4){
 9         int k=sqrt(t);
10         if(k*k==t) ++ans;
11         return ;
12     }
13     for(int i=0;i*i<=t;++i)
14         dfs(t-i*i,d+1); 
15 }
16 int main(){
17     scanf("%d",&n);
18     dfs(n,1);
19     printf("%d",ans);
20     return 0;
21 }
View Code

 

以上是关于bzoj1643 / P2666 [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪的主要内容,如果未能解决你的问题,请参考以下文章

bzoj 1643: [Usaco2007 Oct]Bessie's Secret Pasture 贝茜的秘密草坪枚举

[BZOJ1599] [Usaco2008 Oct] 笨重的石子

bzoj 1231: [Usaco2008 Nov]mixup2 混乱的奶牛状压dp

bzoj3886: [Usaco2015 Jan]Moovie Mooving

[BZOJ2738]矩阵乘法 整体二分+二维树状数组

BZOJ 2016: [Usaco2010]Chocolate Eating