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

poj2955——括号匹配

时间:2018-02-11 23:39:41      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:str   har   name   mes   class   false   org   max   csharp   

题目:http://poj.org/problem?id=2955

区间DP。

代码如下:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
char c[105];
int f[105][105];
bool p(char x,char y)
{
	if((x==‘(‘&&y==‘)‘)||(x==‘[‘&&y==‘]‘))return true;
	else return false;
}
int main()
{
	while(1)
	{
		gets(c);
		if(c[0]==‘e‘)return 0;
		memset(f,0,sizeof f);
		int len=strlen(c);
		for(int i=len-1;i>=0;i--)
			for(int j=i+1;j<len;j++)
			{
				for(int k=i;k<=j-1;k++)
					f[i][j]=max(f[i][j],f[i][k]+f[k+1][j]);//+
				if(p(c[i],c[j]))
					f[i][j]=max(f[i][j],f[i+1][j-1]+2);
//				printf("%d-%d:%d\n",i,j,f[i][j]);
			}
		printf("%d\n",f[0][len-1]);
	}
}

  

poj2955——括号匹配

标签:str   har   name   mes   class   false   org   max   csharp   

原文地址:https://www.cnblogs.com/Zinn/p/8443328.html

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