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

bzoj1621 / P2907 [USACO08OPEN]农场周围的道路Roads Around The Farm

时间:2018-10-27 17:10:45      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:round   display   show   one   fine   dfs   ios   gis   http   

P2907 [USACO08OPEN]农场周围的道路Roads Around The Farm

基础dfs,按题意递归即可。

技术分享图片
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #define re register
 5 using namespace std;
 6 int n,k,ans;
 7 void dfs(int x){
 8     if(x<=k||((x-k)&1)){//不能有半只奶牛(大雾)
 9         ++ans; return;
10     }dfs((x-k)/2); dfs((x-k)/2+k);//分成2群
11 }
12 int main(){
13     scanf("%d%d",&n,&k);dfs(n);
14     printf("%d",ans);
15     return 0;
16 }
View Code

 

bzoj1621 / P2907 [USACO08OPEN]农场周围的道路Roads Around The Farm

标签:round   display   show   one   fine   dfs   ios   gis   http   

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

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