码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-11-27 14:49:29      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:namespace   判断   click   col   cst   ret   usaco   方案   none   

[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 贝茜的秘密草坪

标签:namespace   判断   click   col   cst   ret   usaco   方案   none   

原文地址:https://www.cnblogs.com/kafuuchino/p/10025995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!