poj2955 区间dp
Posted a_clown_cz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj2955 区间dp相关的知识,希望对你有一定的参考价值。
题目链接:http://poj.org/problem?id=2955
题意:给定字符串 求括号匹配最多时的子串长度。
区间dp,状态转移方程: dp[i][j]=max ( dp[i][j] , 2+dp[i+1][k-1]+dp[k+1][j] );
代码:
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; #define ll long long const int maxn=5e4+5; const int INF=0x3f3f3f3f; int dp[105][105]; char str[105]; int Find(int x,int y){ if((str[x]==‘(‘ && str[y]==‘)‘) || (str[x]==‘[‘ && str[y]==‘]‘)) return 2; else return 0; } int main(){ while(cin>>str && strcmp(str,"end")){ memset(dp,0,sizeof(dp)); int n=strlen(str); for(int d=1;d<n;d++) for(int i=0;i+d<n;i++){ int j=i+d; for(int k=i;k<=j;k++) dp[i][j]=max(dp[i][j],Find(i,k)+dp[i+1][k-1]+dp[k+1][j]); } printf("%d\n",dp[0][n-1]); } return 0; }
以上是关于poj2955 区间dp的主要内容,如果未能解决你的问题,请参考以下文章