bzoj 1621: [Usaco2008 Open]Roads Around The Farm分岔路口dfs
Posted lokiii
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 1621: [Usaco2008 Open]Roads Around The Farm分岔路口dfs相关的知识,希望对你有一定的参考价值。
模拟就行……讲道理这个时间复杂度为啥是对的???
#include<iostream>
#include<cstdio>
using namespace std;
int k,n;
int dfs(int v)
{
if(v<=k)
return 1;
if((v-k)%2==0)
return (dfs((v-k)/2)+dfs((v+k)/2));
else
return 1;
}
int main()
{
scanf("%d%d",&n,&k);
printf("%lld",dfs(n));
return 0;
}
以上是关于bzoj 1621: [Usaco2008 Open]Roads Around The Farm分岔路口dfs的主要内容,如果未能解决你的问题,请参考以下文章
BZOJ 1621 [Usaco2008 Open]Roads Around The Farm分岔路口:分治 递归
bzoj 1621: [Usaco2008 Open]Roads Around The Farm分岔路口dfs