本文主要是介绍NYOJ 252 01串,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
OJ题目:http://acm.nyist.net/JudgeOnline/problem.php?pid=252
描述ACM的zyc在研究01串,他知道某一01串的长度,但他想知道不含有“11”子串的这种长度的01串共有多少个,他希望你能帮帮他。
注:01串的长度为2时,有3种:00,01,10。
- 输入
- 第一行有一个整数n(0<n<=100),表示有n组测试数据;
随后有n行,每行有一个整数m(2<=m<=40),表示01串的长度; 输出 - 输出不含有“11”子串的这种长度的01串共有多少个,占一行。 样例输入
-
2 2 3
样例输出 -
3 5
#include <iostream>
#include <string>
#include <string.h>
#include <map>
#include <stdio.h>
#include <algorithm>
#include <queue>
#include <vector>
#include <math.h>
#include <set>
#define Max(a,b) ((a)>(b)?(a):(b))
#define Min(a,b) ((a)<(b)?(a):(b))
#define SWAP(a , b){ int temp = a; a = b; b = temp;}
#define zero 0
#define one 1using namespace std;
int dp[41][2];int main()
{int n,m;cin >> n;while(n--){memset(dp,0,sizeof(dp));cin >> m;dp[1][zero] = 1;dp[1][one] = 1;for(int i = 2;i <= m;i++){dp[i][zero] = dp[i - 1][zero] + dp[i - 1][one];dp[i][one] = dp[i - 1][zero];}cout << dp[m][zero] + dp[m][one] << endl;}return 0;
}
这篇关于NYOJ 252 01串的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!