POJ 1141 Brackets Sequence (區間DP)

來源:互聯網
上載者:User

標籤:dp   poj   

Description

Let us define a regular brackets sequence in the following way:

1. Empty sequence is a regular sequence.
2. If S is a regular sequence, then (S) and [S] are both regular sequences.
3. If A and B are regular sequences, then AB is a regular sequence.

For example, all of the following sequences of characters are regular brackets sequences:

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

And all of the following character sequences are not:

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

Some sequence of characters ‘(‘, ‘)‘, ‘[‘, and ‘]‘ is given. You are to find the shortest possible regular brackets sequence, that contains the given character sequence as a subsequence. Here, a string a1 a2 ... an is called a subsequence of the string b1 b2 ... bm, if there exist such indices 1 = i1 < i2 < ... < in = m, that aj = bij for all 1 = j = n.

Input

The input file contains at most 100 brackets (characters ‘(‘, ‘)‘, ‘[‘ and ‘]‘) that are situated on a single line without any other characters among them.

Output

Write to the output file a single line that contains some regular brackets sequence that has the minimal possible length and contains the given sequence as a subsequence.

Sample Input

([(]

Sample Output

()[()]


題意:給一串括弧序列,按照合法括弧的定義,添加若干括弧,使得序列合法。

典型區間DP,設dp[i][j]為從i到j需要添加最少括弧的數目。

dp[i][j] = max{ dp[i][k]+dp[k+1][j] }  (i<=k<j)

如果s[i] == s[j] , dp[i][j] 還要和dp[i+1][j-1]比較。 枚舉順序按照區間長度枚舉。

因為要求輸出合法序列,就要記錄在原序列在哪些位置進行了增加,設c[i][j]為從i到j的 增加括弧的位置,如果不需要增加,那麼c[i][j] 賦為-1,列印時只需遞迴列印即可。


#include <stdio.h>#include <string.h>#include <algorithm>#include <math.h>using namespace std;typedef long long LL;const int MAX=0x3f3f3f3f;int n,c[105][105],dp[105][105];char s[105];void print(int i,int j) {    if( i>j ) return ;    if( i == j ) {        if(s[i] == '(' || s[i] == ')') printf("()");        else printf("[]");        return ;    }    if( c[i][j] > 0 ) {  // i到j存在增加括弧的地方,位置為c[i][j]        print(i,c[i][j]);        print(c[i][j]+1,j);    } else {        if( s[i] == '(' ) {            printf("(");            print(i+1,j-1);            printf(")");        } else {            printf("[");            print(i+1,j-1);            printf("]");        }    }}void DP() {   //區間DP    for(int len=2;len<=n;len++)        for(int i=1;i<=n-len+1;i++) {            int j = i+len-1;            for(int k=i;k<j;k++) if( dp[i][j] > dp[i][k]+dp[k+1][j] ) {                dp[i][j] = dp[i][k] + dp[k+1][j];                c[i][j] = k;  // 記錄斷開的位置            }            if( ( s[i] == '(' && s[j] == ')' || s[i] == '[' && s[j] == ']' ) && dp[i][j] > dp[i+1][j-1] ) {                dp[i][j] = dp[i+1][j-1];                c[i][j] = -1;  //i到j不需要斷開,因為dp[i+1][j-1]的值更小,上面枚舉的k位置都比這個大,所以不再斷開            }        }}int main(){    scanf("%s",s+1);    n = strlen(s+1);    memset(c,-1,sizeof(c));    memset(dp,MAX,sizeof(c));    for(int i=1;i<=n;i++) dp[i][i] = 1, dp[i][i-1] = 0; //賦初值    DP();    print(1,n);    printf("\n");    return 0;}





聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.