Codeforces653 B. Bear and Compressing(dp)
Posted live4m
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces653 B. Bear and Compressing(dp)相关的知识,希望对你有一定的参考价值。
题意:
解法:
令d[i][j]表示长度为i的串,变化后能否剩下一个j.
三元组(x,y,z)能使得d[i][x]转移到d[i+1][z],即d[i+1][z]+=d[i][x].
code:
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int maxm=2e5+5;
struct Node{
char a,b,c;
}e[maxm];
int d[maxm][6];
int n,q;
void solve(){
cin>>n>>q;
for(int i=1;i<=q;i++){
cin>>e[i].a>>e[i].b>>e[i].c;
e[i].a-='a';
e[i].b-='a';
e[i].c-='a';
}
for(int j=0;j<6;j++){
d[1][j]=1;
}
for(int i=1;i<n;i++){
for(int j=0;j<6;j++){
for(int k=1;k<=q;k++){
if(e[k].a==j){
d[i+1][e[k].c]+=d[i][j];
}
}
}
}
cout<<d[n][0]<<endl;
}
signed main(){
ios::sync_with_stdio(0);cin.tie(0);
solve();
return 0;
}
以上是关于Codeforces653 B. Bear and Compressing(dp)的主要内容,如果未能解决你的问题,请参考以下文章
codeforces 653A A. Bear and Three Balls(水题)
codeforces 653C C. Bear and Up-Down(乱搞题)
CodeForces 653 A. Bear and Three Balls——(IndiaHacks 2016 - Online Edition (Div. 1 + Div. 2))
codeforces 680B B. Bear and Finding Criminals(水题)