标签:style blog io color ar os for sp strong
描述
ACM的zyc在研究01串,他知道某一01串的长度,但他想知道不含有“11”子串的这种长度的01串共有多少个,他希望你能帮帮他。
注:01串的长度为2时,有3种:00,01,10。
2 2 3
3 5
#include <iostream> #include <iomanip> #include <algorithm> #include <vector> #include <list> #include <memory.h> #include <string> #include <math.h> using namespace std; int main() { int n; cin>>n; while(n--) { int m; cin>>m; int arr[50] = {0,0,3,5}; for(int i=4;i<=m;i++) { arr[i] = arr[i-1] + arr[i-2]; } cout<<arr[m]<<endl; } return 0; }
标签:style blog io color ar os for sp strong
原文地址:http://www.cnblogs.com/imwtr/p/4069543.html