首页 > 代码库 > 拼图
拼图
拼图
Time Limit: 1000MS | Memory Limit: 65535KB |
Submissions: 117 | Accepted: 69 |
Sample Input
3 4
Sample Output
5 11
#include <iostream> #include <stdio.h> using namespace std; int n,num; int b[3]={1,2,2}; void dfs(int index) { int i; if(index>n) { return ; } if(index==n) { num++; } for(i=0;i<3;i++) { dfs(index+b[i]); } } int main() { while(scanf("%d",&n)!=EOF) { num = 0; dfs(0); printf("%d\n",num); } return 0; }
规律
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # include<stdio.h> int f( int n) { if (n==1) return 1; if (n==2) return 3; return 2*f(n-2)+f(n-1); } int main() { int n; while ( scanf ( "%d" ,&n)!=EOF) { printf ( "%d\n" ,f(n)); } return 0; } |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。