zoukankan      html  css  js  c++  java
  • poj 1141 Brackets Sequence ( 区间dp+输出方案 )

    http://blog.csdn.net/cc_again/article/details/10169643

    http://blog.csdn.net/lijiecsu/article/details/7589877

    如果有空串要用gets,scanf不能处理空串

    #include <iostream>
    #include <string>
    #include <cstring>
    #include <cstdlib>
    #include <cstdio>
    #include <cmath>
    #include <algorithm>
    #include <stack>
    #include <queue>
    #include <cctype>
    #include <vector>
    #include <iterator>
    #include <set>
    #include <map>
    #include <sstream>
    using namespace std;
    
    #define mem(a,b) memset(a,b,sizeof(a))
    #define pf printf
    #define sf scanf
    #define spf sprintf
    #define pb push_back
    #define debug printf("!
    ")
    #define INF 10000
    #define MAX(a,b) a>b?a:b
    #define blank pf("
    ")
    #define LL long long
    #define ALL(x) x.begin(),x.end()
    #define INS(x) inserter(x,x.begin())
    #define pqueue priority_queue
    
    const int MAXN = 1000 + 5;
    
    int n,m;
    
    int dp[110][110],path[110][110];
    char a[110];
    
    bool match(int i,int j)
    {
        return (a[i]=='(' && a[j]== ')') || (a[i]=='[' && a[j]== ']');
    }
    void print(int i,int j)
    {
        if(i>j) return;
        if(i == j)
        {
            if(a[i] == '(' || a[i]== ')')
                pf("()");
            else
                pf("[]");
            return;
        }
        if(path[i][j] == -1)
        {
            pf("%c",a[i]);
            print(i+1,j-1);
            pf("%c",a[j]);
            return;
        }
        else
        {
            print(i,path[i][j]);
            print(path[i][j]+1,j);
        }
    }
    
    int main()
    {
        int i,j;
        while(gets(a))
        {
            n = strlen(a);
            mem(dp,0);
            mem(path,0);
            for(i=0;i<n;i++)
                dp[i][i]=1;
            for(int l = 1;l<n;l++)
            {
                for(i=0;i<n-l;i++)
                {
                    j = i+l;
                    dp[i][j] = 1<<30;
                    if(match(i,j) && dp[i+1][j-1] < dp[i][j])
                    {
                        dp[i][j] = dp[i+1][j-1];
                        path[i][j] = -1;
                    }
    
                    for(int k =i;k<j;k++)
                    {
                        if(dp[i][k]+dp[k+1][j] < dp[i][j])
                        {
                            dp[i][j] = dp[i][k]+dp[k+1][j];
                            path[i][j] = k;
                        }
                    }
                }
            }
            print(0,n-1);
            blank;
        }
        return 0;
    }
  • 相关阅读:
    [leetcode-495-Teemo Attacking]
    [leetcode-413-Arithmetic Slices]
    document对象操作:浏览器页面文件
    搭建wamp环境,数据库基础知识
    jenkins配置邮箱服务器(126邮箱)
    Linux命令之文件与用户权限
    并发与同步、信号量与管程、生产者消费者问题
    TypeScript设计模式之职责链、状态
    了解HTML列表
    CSS画出的图
  • 原文地址:https://www.cnblogs.com/qlky/p/5465220.html
Copyright © 2011-2022 走看看