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.

This problem contains multiple test cases!

The first line of a multiple input is an integer N, then a blank line followed by N input blocks. Each input block is in the format indicated in the problem description. There is a blank
line between input blocks.

The output format consists of N output blocks. There is a blank line between output blocks.

Sample Input

1



([(]

Sample Output



()[()]

关键在于输入与输出格式。神坑。

区间dp,dp[i][j]表示
区间 i 到j之间的匹配数,区间两端的 字符能否够刚好匹配,若能够匹配 状态转移就多了一个 dp[i][j] = max(dp[i][k]+dp[k+1][j],dp[i+1][j-1]+1),若不能匹配就是dp[i][j]
= max(dp[i][j],dp[i][k]+dp[k+1][j]);

若是两端能够匹配的,并且两端匹配了导致的dp值最大那么就标记一下。mark[i][j]
= -1,否则 就mark[i][j] = k,这样把全部区间都dp一遍,回头再用DFS寻找。若是两端匹配导致值最大的 那么就直接输出这个字符标记一下,继续往更小的区间去搜索,否则 就分开两个区间搜索 [i,k]        [k+1,j]

#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
#define up(i,x,y) for(i=x;i<=y;i++)
#define down(i,x,y) for(i=x;i>=y;i--)
#define mem(a,b) memset(a,b,sizeof(a))
#define w(a) while(a)
char str[105];
int t,len,dp[105][105],mark[105][105],pos[105];
void dfs(int i,int j)
{
if(mark[i][j]==-1)
{
pos[i]=pos[j]=1;
dfs(i+1,j-1);
}
else if(mark[i][j]>=0)
{
dfs(i,mark[i][j]);
dfs(mark[i][j]+1,j);
}
return;
}
int main()
{
int l,i,j,k;
scanf("%d%*c%*c",&t);
while(t--)
{
gets(str);
len=strlen(str);
if(!len)
{
printf("\n");
if(t)
printf("\n");
continue;
}
up(i,0,len-1)
up(j,0,len-1)
{
mark[i][j]=-2;
dp[i][j]=0;
}
mem(pos,0);
i=j=l=0;
w(l<len)
{
if(i==j)
{
i++,j++;
if(j==len)
i=0,l++,j=l;
continue;
}
if((str[i]=='('&&str[j]==')')||(str[i]=='['&&str[j]==']'))
{
up(k,i,j-1)
{
if(dp[i][j]<dp[i][k]+dp[k+1][j])
{
mark[i][j]=k;
dp[i][j]=dp[i][k]+dp[k+1][j];
}
}
if(dp[i][j]<dp[i+1][j-1]+1)
{
mark[i][j]=-1;
dp[i][j]=dp[i+1][j-1]+1;
}
}
else
{
up(k,i,j-1)
{
if(dp[i][j]<dp[i][k]+dp[k+1][j])
{
mark[i][j]=k;
dp[i][j]=dp[i][k]+dp[k+1][j];
}
}
}
i++,j++;
if(j==len)
{
l++;
i=0;
j=l;
}
}
dfs(0,len-1);
up(i,0,len-1)
{
if(pos[i]==1)
printf("%c",str[i]);
else if(str[i]=='('||str[i]==')')
printf("()");
else
printf("[]");
}
printf("\n");
if(t)
{
printf("\n");
getchar();
}
} return 0;
}

版权声明:本文博主原创文章,博客,未经同意不得转载。

ZOJ1463:Brackets Sequence(间隙DP)的更多相关文章

  1. poj 1141 Brackets Sequence 区间dp,分块记录

    Brackets Sequence Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 35049   Accepted: 101 ...

  2. POJ 1141 Brackets Sequence(区间DP, DP打印路径)

    Description We give the following inductive definition of a “regular brackets” sequence: the empty s ...

  3. poj 1141 Brackets Sequence (区间dp)

    题目链接:http://poj.org/problem?id=1141 题解:求已知子串最短的括号完备的全序列 代码: #include<iostream> #include<cst ...

  4. [原]POJ1141 Brackets Sequence (dp动态规划,递归)

    本文出自:http://blog.csdn.net/svitter 原题:http://poj.org/problem?id=1141 题意:输出添加括号最少,并且使其匹配的串. 题解: dp [ i ...

  5. URAL 1183 Brackets Sequence(DP)

    题目链接 题意 : 给你一串由括号组成的串,让你添加最少的括号使该串匹配. 思路 : 黑书上的DP.dp[i][j] = min{dp[i+1][j-1] (sh[i] == sh[j]),dp[i] ...

  6. Ural 1183 Brackets Sequence(区间DP+记忆化搜索)

    题目地址:Ural 1183 最终把这题给A了.. .拖拉了好长时间,.. 自己想还是想不出来,正好紫书上有这题. d[i][j]为输入序列从下标i到下标j最少须要加多少括号才干成为合法序列.0< ...

  7. poj 1141 Brackets Sequence ( 区间dp+输出方案 )

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

  8. UVA 1626 Brackets sequence 区间DP

    题意:给定一个括号序列,将它变成匹配的括号序列,可能多种答案任意输出一组即可.注意:输入可能是空串. 思路:D[i][j]表示区间[i, j]至少需要匹配的括号数,转移方程D[i][j] = min( ...

  9. POJ 题目1141 Brackets Sequence(区间DP记录路径)

    Brackets Sequence Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 27793   Accepted: 788 ...

随机推荐

  1. 什么样的企业造什么样的软件最easy成功?

    事件1: 一般软件企业按功能分,大体分业务应用型软件和系统工具型软件. 按市场分,应用型软件企业较多,直接贴近生活:系统工具类较少,间接贴近大众较少. 事件2: 软件企业中,当中中小型企业老板存在非常 ...

  2. ZTESoft 持续集成 编年史 之 持续集成探索---平台选择

    2012 年 7.8 月份,我们逐渐了解了持续集成的概念,同时我们家庭作坊的dailybuild方式不断爆出各种问题,并且已经无法满足日益增长的各种需求. 我们开始探索持续集成的不同实现方式,首先我们 ...

  3. JAVA 读取图片储存至本地

    需求:serlvet经过处理通过报表工具返回一张报表图(柱状图 折线图). 现在需要把这个图存储到本地 以便随时查看 // 构造URL URL url = new URL(endStr); // 打开 ...

  4. 重写equals()与hashCode()方法

    出自:http://blog.csdn.net/renfufei/article/details/16339351 Java语言是完全面向对象的,在java中,所有的对象都是继承于Object类.Oj ...

  5. cocos2dx 3.1从零学习(六)——CocosStudio(VS2013project导入及环境设置)

    导入libCocosStudio.libExtensions.libGUI 新建的project例如以下图: 加入现有项目 右键解决方式.例如以下操作: watermark/2/text/aHR0cD ...

  6. C++——STL中三种顺序容器的简要差别

    C++ STL 提供了3个顺序容器 :vector, deque, list Vector动态数组.支持高速訪问:list双向链表,支持高速插入和删除. vector 中的元素是顺序存放的.所以随机訪 ...

  7. wscript:329: error: Could not autodetect OpenSSL support. Make sure OpenSSL development packages are

    安装node错: wscript:329: error: Could not autodetect OpenSSL support. Make sure OpenSSL development pac ...

  8. 我写了一起 Makefile(一)

    我写了一起 Makefile  陈皓 概述—— 什么是makefile?也许非常多Winodws的程序猿都不知道这个东西,由于那些Windows的IDE都为你做了这个工作.但我认为要作一个好的和pro ...

  9. 第三章 AOP 基于Schema的AOP

    基于Schema定义的切面和前现两种方式定义的切面,内容上都差不多,只是表现形式不一样而已. 3.7.1一般增强的使用 a.目标类 public class Target { public void ...

  10. ZOJ--3631--Watashi&#39;s BG【枚举】

    链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=4777 题意:有n天,告诉你每天的花费,别人给你一笔资金m,你自己也有一部 ...