POJ - 2955 Brackets

We give the following inductive definition of a “regular brackets” sequence:

  • the empty sequence is a regular brackets sequence,
  • if s is a regular brackets sequence, then (s) and [s] are regular brackets sequences, and
  • if a and b are regular brackets sequences, then ab is a regular brackets sequence.
  • no other sequence is a regular brackets sequence

For instance, all of the following character sequences are regular brackets sequences:

(), [], (()), ()[], ()[()]

while the following character sequences are not:

(, ], )(, ([)], ([(]

Given a brackets sequence of characters a1a2an, your goal is to find the length of the longest regular brackets sequence that is a subsequence of s. That is, you wish to find the largest m such that for indices i1, i2, …, im where 1 ≤ i1 < i2 < … < imn, ai1ai2aim is a regular brackets sequence.

Given the initial sequence ([([]])], the longest regular brackets subsequence is [([])].

Input

The input test file will contain multiple test cases. Each input test case consists of a single line containing only the characters (, ), [, and ]; each input test will have length between 1 and 100, inclusive. The end-of-file is marked by a line containing the word “end” and should not be processed.

Output

For each input case, the program should print the length of the longest possible regular brackets subsequence on a single line.

Sample Input

((()))
()()()
([]])
)[)(
([][][)
end

Sample Output

6
6
4
0
6

问符合要求的匹配括号一共有多少。
这里采用逆向思维,将不符合要求的最小值算出来,总数减去结果即可。
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 
 6 using namespace std;
 7 
 8 int dp[105][105];
 9 char s[105];
10 
11 int main()
12 {
13     while(scanf("%s",s),strcmp(s, "end") != 0)
14     {
15         memset(dp,0,sizeof(dp));
16         int len=strlen(s);
17         for(int i=0;i<len;i++)
18             dp[i][i]=1;
19         int j;
20         for(int l=1;l<len;l++)
21             for(int i=0;i<len-1;i++)
22             {
23                 j=i+l;
24                 if(j>=len)
25                     continue;
26                 dp[i][j]=1e9;
27                 if((s[i]=='('&&s[j]==')')||(s[i]=='['&&s[j]==']'))
28                     dp[i][j]=dp[i+1][j-1];
29                 for(int k=i;k<j;k++)
30                     dp[i][j]=min(dp[i][j],dp[i][k]+dp[k+1][j]);
31                 //cout<<i+1<<" "<<j+1<<" "<<dp[i][j]<<endl;
32             }
33         printf("%d\n",len-dp[0][len-1]);
34     }
35     
36     return 0;
37 }

 

posted @ 2017-08-05 08:34  西北会法语  阅读(106)  评论(0编辑  收藏  举报