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

[poj2955]括号匹配(区间dp)

时间:2017-08-24 18:02:55      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:成功   左右   long   include   style   break   括号   了解   math   

解题关键:了解转移方程即可。

转移方程:$dp[l][r] = dp[l + 1][r - 1] + 2$ 若该区间左右端点成功匹配。然后对区间内的子区间取max即可。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<cstdlib>
 5 #include<cmath>
 6 #include<iostream>
 7 using namespace std;
 8 typedef long long ll;
 9 int dp[202][202];
10 int main(){
11     string s;
12     ios::sync_with_stdio(0);
13     while(cin>>s){
14         memset(dp,0,sizeof dp);
15         if(s=="end") break;
16         for(int len=1;len<=s.size();len++){
17             for(int l=0,r;(r=l+len-1)<s.size();l++){
18                 if((s[l]==(&&s[r]==))||(s[l]==[&&s[r]==])) dp[l][r]=dp[l+1][r-1]+2;
19                 for(int i=0;i<r;i++) dp[l][r]=max(dp[l][i]+dp[i+1][r],dp[l][r]);
20             }
21         }
22         cout<<dp[0][s.size()-1]<<"\n";
23     }
24     return 0;
25 }

 

[poj2955]括号匹配(区间dp)

标签:成功   左右   long   include   style   break   括号   了解   math   

原文地址:http://www.cnblogs.com/elpsycongroo/p/7424089.html

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