有一个只含0和1的长度为n的串,问不含有101的所有串的个数。

——不存在连续的101、010、111的字符串数量

HDU:https://cn.vjudge.net/problem/HDU-3485

51nod:

https://blog.csdn.net/Viscu/article/details/52669071

https://blog.csdn.net/lwlldd/article/details/70941554

https://blog.csdn.net/xtulollipop/article/details/52689159

https://blog.csdn.net/f_zyj/article/details/52663012

https://blog.csdn.net/LuRiCheng/article/details/52673193

JOJ:https://blog.csdn.net/kongming_acm/article/details/5377198

https://blog.csdn.net/jcwkyl/article/details/4153057

http://blog.sina.com.cn/s/blog_944759ba0100vmz9.html


记录后两位,共有4种情况

00->0

01->1

10->2

11->3;

【101的时候】

dp[i][0]=dp[i-1][0]+dp[i-1][2];
dp[i][1]=dp[i-1][0];
dp[i][2]=dp[i-1][1]+dp[i-1][3];
dp[i][3]=dp[i-1][1]+dp[i-1][3];

#include<cstdio>
#include<string>
#include<cstdlib>
#include<cmath>
#include<iostream>
#include<cstring>
#include<set>
#include<queue>
#include<algorithm>
#include<vector>
#include<map>
#include<cctype>
#include<stack>
#include<sstream>
#include<list>
#include<assert.h>
#include<bitset>
#include<numeric>
#define debug() puts("++++")
#define gcd(a,b) __gcd(a,b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a,b,sizeof(a))
#define sz size()
#define be begin()
#define mp make_pair
#define pu push_up
#define pd push_down
#define cl clear()
#define lowbit(x) -x&x
#define all 1,n,1
#define rep(i,x,n) for(int i=(x); i<=(n); i++)
#define in freopen("in.in","r",stdin)
#define out freopen("out.out","w",stdout)
#define mod 9997
using namespace std;
typedef long long ll;
typedef unsigned long long ULL;
typedef pair<int,int> P;
const ULL base = ;//
const int INF = 0x3f3f3f3f;
const ll LNF = ;
const int maxn = +;
const int maxm = 1e6 + ;
const double PI = acos(-1.0);
const double eps = 1e-;
const int dx[] = {-,,,,,,-,-};
const int dy[] = {,,,-,,-,,-};
int dir[][] = {{,},{,-},{-,},{,}};
const int mon[] = {, , , , , , , , , , , , };
const int monn[] = {, , , , , , , , , , , , };
/*
010
00 - 0
01 - 1
10 - 2
11 - 3
*/ ll dp[maxn][],ans[maxn];
void init()
{
//
ms(dp,);
dp[][]=;
dp[][]=;dp[][]=;dp[][]=;dp[][]=;
for(int i=;i<;i++)
{
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][])%mod;
}
}
void init1()
{
//
ms(dp,);
dp[][]=;
dp[][]=;dp[][]=;dp[][]=;dp[][]=;
for(int i=;i<;i++)
{
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
}
} void init2()
{
//
ms(dp,);
dp[][]=;
dp[][]=;dp[][]=;dp[][]=;dp[][]=;
for(int i=;i<;i++)
{
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
}
}
int main()
{
int n;
while(cin>>n)
{
init();
if(n==-) break;
cout<<(dp[n][]+dp[n][]+dp[n][]+dp[n][])%mod<<endl;
}
}
/*
【题意】 【类型】 【分析】 【时间复杂度&&优化】 【trick】
首先dp打表找个规律:
如何DP?
这里我们找合法串:010
假设末尾i是1,那么i-1位置上无论是0和还是1都合法,不会出现010的情况,那么
就是dp[i][1] = dp[i-1][0] + dp[i-1][1];
如果末尾i是0,
如果i-1位置上是0,那么无论如何也是合法的,
如果i-1的位置上是1,会出现010/101这样的情况,那么讨论第i-2位上的,i-2如果是0,那么会出现010的情况, 如果i-2位置上是1的话,无论如何都是合法串,那就是dp[i][0] = dp[i-1][0] + dp[i-2][1];
【数据】
0 1(i-3)-0
00 01 10 11(i-2)x1
000 001 【010/1】 011 100 【110/1】 111 (i-1) x10
010-1
110-1 */

01字符串递推DP

#include<cstdio>
#include<string>
#include<cstdlib>
#include<cmath>
#include<iostream>
#include<cstring>
#include<set>
#include<queue>
#include<algorithm>
#include<vector>
#include<map>
#include<cctype>
#include<stack>
#include<sstream>
#include<list>
#include<assert.h>
#include<bitset>
#include<numeric>
#define debug() puts("++++")
#define gcd(a,b) __gcd(a,b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define fi first
#define se second
#define pb push_back
#define sqr(x) ((x)*(x))
#define ms(a,b) memset(a,b,sizeof(a))
#define sz size()
#define be begin()
#define mp make_pair
#define pu push_up
#define pd push_down
#define cl clear()
#define lowbit(x) -x&x
#define all 1,n,1
#define rep(i,x,n) for(int i=(x); i<=(n); i++)
#define in freopen("in.in","r",stdin)
#define out freopen("out.out","w",stdout)
#define mod 9997
using namespace std;
typedef long long ll;
typedef unsigned long long ULL;
typedef pair<int,int> P;
const ULL base = ;//
const int INF = 0x3f3f3f3f;
const ll LNF = ;
const int maxn = +;
const int maxm = 1e6 + ;
const double PI = acos(-1.0);
const double eps = 1e-;
const int dx[] = {-,,,,,,-,-};
const int dy[] = {,,,-,,-,,-};
int dir[][] = {{,},{,-},{-,},{,}};
const int mon[] = {, , , , , , , , , , , , };
const int monn[] = {, , , , , , , , , , , , };
/*
0
001
0 1
00 01 10 11
0 2 4 7
*/ ll dp[maxn][],ans[maxn];
void init()
{
ms(dp,);
ms(ans,);
ans[]=;ans[]=;ans[]=;
dp[][]=,dp[][]=;
dp[][]=,dp[][]=;
//dp[3][0]=4;dp[3][1]=3;
for(int i=;i<;i++)
{
dp[i][]=(dp[i-][]+dp[i-][])%mod;
dp[i][]=(dp[i-][]+dp[i-][])%mod;
ans[i]=(dp[i][]%mod+dp[i][]%mod)%mod;
}
}
int main()
{
int n;
while(cin>>n)
{
init();
if(n==-) break;
cout<<ans[n]%mod<<endl;
}
}
/*
【题意】 【类型】 【分析】 【时间复杂度&&优化】 【trick】
首先dp打表找个规律:
如何DP?
这里我们找合法串:010
假设末尾i是1,那么i-1位置上无论是0和还是1都合法,不会出现010的情况,那么
就是dp[i][1] = dp[i-1][0] + dp[i-1][1];
如果末尾i是0,
如果i-1位置上是0,那么无论如何也是合法的,
如果i-1的位置上是1,会出现010/101这样的情况,那么讨论第i-2位上的,i-2如果是0,那么会出现010的情况, 如果i-2位置上是1的话,无论如何都是合法串,那就是dp[i][0] = dp[i-1][0] + dp[i-2][1];
【数据】
0 1(i-3)-0
00 01 10 11(i-2)x1
000 001 【010/1】 011 100 【110/1】 111 (i-1) x10
010-1
110-1 */

dp[i][j]:长度i,j代表末尾0 or 1

HDU 3485【101】 51nod 1668【010】 joj 2171【111】动态规划的更多相关文章

  1. 51Nod 1668 非010串

    这是昨天上课ChesterKing dalao讲线代时的例题 当时看到这道题就觉得很水,记录一下后面两位的情况然后讨论一下转移即可 由于之前刚好在做矩阵题,所以常规的矩阵快速幂优化也很简单 好我们开始 ...

  2. Hdu OJ 5115 Dire Wolf (2014ACM/ICPC亚洲区北京站) (动态规划-区间dp)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5115 题目大意:前面有n头狼并列排成一排, 每一头狼都有两个属性--基础攻击力和buff加成, 每一头 ...

  3. 【51Nod】1055 最长等差数列 动态规划

    [题目]1055 最长等差数列 [题意]给定大小为n的互不不同正整数集合,求最长等差数列的长度.\(n \leq 10000\). [算法]动态规划 两个数之间的差是非常重要的信息,设\(f_{i,j ...

  4. 51Nod 1083 矩阵取数问题 | 动态规划

    #include "bits/stdc++.h" using namespace std; #define LL long long #define INF 0x3f3f3f3f3 ...

  5. 51nod 最长单增子序列(动态规划)

    最长单增子序列 (LIS Longest Increasing Subsequence)给定一个数列,从中删掉任意若干项剩余的序列叫做它的一个子序列,求它的最长的子序列,满足子序列中的元素是单调递增的 ...

  6. HDU——1799循环多少次(杨辉三角/动态规划/C(m,n)组合数)

    循环多少次? Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Sub ...

  7. HDU 5375 Gray code(2015年多校联合 动态规划)

    题目连接 : 传送门 题意: 给定一个长度为的二进制串和一个长度为n的序列a[],我们能够依据这个二进制串得到它的Gray code. Gray code中假设第i项为1的话那么我们就能够得到a[i] ...

  8. 题解【AtCoder - CODE FESTIVAL 2017 qual B - D - 101 to 010】

    题目:https://atcoder.jp/contests/code-festival-2017-qualb/tasks/code_festival_2017_qualb_d 题意:给一个 01 串 ...

  9. 2013长春网赛1001 hdu 4759 Poker Shuffle

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4759 题意:有一堆2^n的牌,牌原先按(1,2,....k)排序,每一次洗牌都将牌分成两种情况:(1, ...

随机推荐

  1. 数学:Burnside引理与Pólya定理

    这个计数定理在考虑对称的计数中非常有用 先给出这个定理的描述,虽然看不太懂: 在一个置换群G={a1,a2,a3……ak}中,把每个置换都写成不相交循环的乘积. 设C1(ak)是在置换ak的作用下不动 ...

  2. 图论:Floyd-多源最短路、无向图最小环

    在最短路问题中,如果我们面对的是稠密图(十分稠密的那种,比如说全连接图),计算多源最短路的时候,Floyd算法才能充分发挥它的优势,彻彻底底打败SPFA和Dijkstra 在别的最短路问题中都不推荐使 ...

  3. 【C++对象模型】第一章 关于对象

    1.C/C++区别 C++较之C的最大区别,无疑在于面向对象,C程序中程序性地使用全局数据.而C++采用ADT(abstract data tpye)或class hierarchy的数据封装.类相较 ...

  4. SpringBoot jar包不支持jsp

    官方原文如下: When running a Spring Boot application that uses an embedded servlet container (and is packa ...

  5. 计蒜客 Goldbach Miller_Rabin判别法(大素数判别法)

    题目链接:https://nanti.jisuanke.com/t/25985 题目: Description: Goldbach's conjecture is one of the oldest ...

  6. 【bug】vue-cli 3.0报错的解决办法

    先上bug图片 bug说明:初装vue_cli3.0写了个组件,运行错误,显示如图, 代码提示:[Vue warn]: You are using the runtime-only build of ...

  7. 另类dedecms后台拿shell

    遇到一个被阉割的后台,发现直接传shell显然不行. 然后就有了下文 添加一个新广告. 插入一句话木马: --><?php $_GET[c]($_POST[x]);?><!-- ...

  8. [Leetcode Week16]Insertion Sort List

    Insertion Sort List 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/insertion-sort-list/description/ ...

  9. centos7系统安装配置

    下载centos7 iso镜像 电脑里面本来有ubuntu系统,直接在u盘做好启动盘安装即可,选择手动分区(忘了),将原本ubuntu系统分区压缩200G.系统不要选择最小化,选择gnome的图形界面 ...

  10. 网络设备之分配net_device结构

    注册网络设备时,会调用pci_driver->probe函数,以e100为例,最终会调用alloc_netdev_mqs来分配内存,并且在分配内存后调用setup函数(以太网为ether_set ...