CODEVS——T 2956 排队问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CODEVS——T 2956 排队问题相关的知识,希望对你有一定的参考价值。

http://codevs.cn/problem/2956/

 时间限制: 1 s
 空间限制: 32000 KB
 题目等级 : 黄金 Gold
 
 
题目描述 Description

有N个学生去食堂,可教官规定:必须2人或3人组成一组,求有多少种不同分组的方法。

 

输入描述 Input Description

一个数,N

输出描述 Output Description

一个数,即答案。

样例输入 Sample Input

6

样例输出 Sample Output

2

数据范围及提示 Data Size & Hint

N<=150

 

技术分享
 1 #include <cstdio>
 2 
 3 int n,ans;
 4 
 5 void DFS(int sum)
 6 {
 7     if(sum>n) return ;
 8     if(sum==n) { ans++; return ; }
 9     if(sum+2<=n) DFS(sum+2);
10     if(sum+3<=n) DFS(sum+3);
11 }
12 
13 int Presist()
14 {
15     scanf("%d",&n);
16     DFS(0);
17     printf("%d\n",ans);
18     return 0;
19 }
20 
21 int Aptal=Presist();
22 int main(int argc,char*argv[]){;}
深搜60
技术分享
 1 #include <cstdio>
 2 
 3 int n,ans;
 4 long long f[155];
 5 
 6 int Presist()
 7 {
 8     scanf("%d",&n);
 9     f[2]=f[3]=1;
10     for(int i=4; i<=n; ++i) f[i]=f[i-2]+f[i-3];
11     printf("%lld\n",f[n]);
12     return 0;
13 }
14 
15 int Aptal=Presist();
16 int main(int argc,char*argv[]){;}
递推AC

 

以上是关于CODEVS——T 2956 排队问题的主要内容,如果未能解决你的问题,请参考以下文章

codevs——2956 排队问题

codevs 3286 火柴排队

codevs 3286 火柴排队

Codevs 3286 火柴排队

HNOI 2012/codevs 1994:排队

Codevs 3286 火柴排队 2013年NOIP全国联赛提高组 树状数组,逆序对