码迷,mamicode.com
首页 > 其他好文 > 详细

[luogu4290 HAOI2008]玩具取名(DP)

时间:2018-10-03 22:25:26      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:class   wro   pre   区间   [1]   getchar   map   return   puts   

传送门

Solution

裸区间DP

Code

#include <map>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#define F(i,a,b) for(register int i=(a);i<=(b);i++)
using namespace std;

inline int read() {
    int x=0,f=1;char c=getchar();
    while(!isdigit(c)) {if(c=='-')f=-f;c=getchar();}
    while(isdigit(c)) x=(x<<1)+(x<<3)+(c^48),c=getchar();
    return x*f;
}

int tot,len;
map <char,int> M;
char str[]="!WING",ch[300];
int num[5],sc[300][3],f[300][300][5];

int main() {
    F(i,1,4) M[str[i]]=i;
    F(i,1,4) num[i]=read();
    F(i,1,4) F(j,1,num[i]) sc[++tot][0]=i,scanf("%s",ch+1),sc[tot][1]=M[ch[1]],sc[tot][2]=M[ch[2]];
    scanf("%s",ch+1);len=strlen(ch+1);
    F(i,1,len) f[i][i][M[ch[i]]]=1;
    F(L,1,len) F(i,1,len-L+1) {
        int j=i+L-1;
        F(k,i,j-1) F(x,1,tot) 
            f[i][j][sc[x][0]]|=f[i][k][sc[x][1]]&f[k+1][j][sc[x][2]];
    }
        
//  F(i,1,len) F(j,i,len) F(k,1,4) cout<<i<<" "<<j<<" "<<k<<" "<<f[i][j][k]<<endl;
    bool flag=0; F(i,1,4) if(f[1][len][i]) putchar(str[i]),flag=1;
    if(!flag) puts("The name is wrong!");
    return 0;
}

[luogu4290 HAOI2008]玩具取名(DP)

标签:class   wro   pre   区间   [1]   getchar   map   return   puts   

原文地址:https://www.cnblogs.com/Menteur-Hxy/p/9738876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!