poj 1141

时间:2022-09-16 09:17:32

简单的dp

忘了\n,调了半天(目测不是第一次了)

直接贴代码:

#include<cstdio>

#include<cstring>

using namespace std;

char s[120];

int dp[120][120]={0};

int min(int x,int y){

return (x>y)?y:x;

}

void solve(int x,int y){

if(dp[x][y]==0){

for(int i=x;i<=y;i++)

printf("%c",s[i]);

return;

}

if(y==x){

if(s[x]=='(' || s[x]==')')printf("()");

if(s[x]=='[' || s[x]==']')printf("[]");

return;

}

if((s[x]=='(' && s[y]==')' || s[x]=='[' && s[y]==']') && dp[x][y]==dp[x+1][y-1]){

printf("%c",s[x]);

solve(x+1,y-1);

printf("%c",s[y]);

return;

}

for(int i=x;i<y;i++)

if(dp[x][y]==dp[x][i]+dp[i+1][y]){

solve(x,i);

solve(i+1,y);

return;

}

return;

}

int main(){

gets(s);

int l=strlen(s);

for(int i=0;i<l;i++)dp[i][i]=1;

for(int i=1;i<l;i++)

for(int j=0;j<l-i;j++){

int a=j,b=j+i;

dp[a][b]=200;

if(s[a]=='(' && s[b]==')' || s[a]=='[' && s[b]==']')dp[a][b]=dp[a+1][b-1];

for(int k=a;k<b;k++)

dp[a][b]=min(dp[a][b],dp[a][k]+dp[k+1][b]);

}

/*     for(int i=0;i<l;i++){

for(int j=0;j<l;j++)

printf("%d ",dp[i][j]);

printf("\n");

}*/

solve(0,l-1);

printf("\n");

return 0;

}

poj 1141的更多相关文章

  1. 括号序列问题 uva 1626 poj 1141【区间dp】

    首先考虑下面的问题:Code[VS] 3657 我们用以下规则定义一个合法的括号序列: (1)空序列是合法的 (2)假如S是一个合法的序列,则 (S) 和[S]都是合法的 (3)假如A 和 B 都是合 ...

  2. poj 1141 Brackets Sequence &lpar;区间dp&rpar;

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

  3. poj 1141 Brackets Sequence(区间DP)

    题目:http://poj.org/problem?id=1141 转载:http://blog.csdn.net/lijiecsu/article/details/7589877 定义合法的括号序列 ...

  4. POJ 1141 Brackets Sequence&lpar;括号匹配二&rpar;

    题目链接:http://poj.org/problem?id=1141 题目大意:给你一串字符串,让你补全括号,要求补得括号最少,并输出补全后的结果. 解题思路: 开始想的是利用相邻子区间,即dp[i ...

  5. POJ &num;1141 - Brackets Sequence - TODO&colon; POJ website issue

    A bottom-up DP. To be honest, it is not easy to relate DP to this problem. Maybe, all "most&quo ...

  6. 区间DP POJ 1141 Brackets Sequence

    Brackets Sequence Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 29520   Accepted: 840 ...

  7. POJ 1141 经典DP 轨迹打印

    又几天没写博客了,大二的生活实在好忙碌啊,开了五门专业课,每周都是实验啊实验啊实验啊....我说要本月刷够60题,但好像完不成了,也就每天1题的样子.如今写动规还是挺有条理的,包括这道需要打印轨迹,其 ...

  8. poj 1141 区间dp&plus;递归打印路径

    Brackets Sequence Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 30383   Accepted: 871 ...

  9. POJ 1141 Brackets Sequence&lpar;DP&rpar;

    题目链接 很早 很早之前就看过的一题,今天终于A了.状态转移,还算好想,输出路径有些麻烦,搞了一个标记数组的,感觉不大对,一直wa,看到别人有写直接输出的..二了,直接输出就过了.. #include ...

随机推荐

  1. iOS开发 点击某处横屏竖屏切换

    typedef NS_ENUM(NSInteger, UIInterfaceOrientation) { UIInterfaceOrientationUnknown            = UIDe ...

  2. Java 序列化 反序列化 历史版本处理

    直接引用  http://www.cnblogs.com/xdp-gacl/p/3777987.html

  3. 【转】ubuntu打包压缩命令总结

    原文网址:http://blog.csdn.net/renero/article/details/6428523 .tar解包:tar xvf FileName.tar打包:tar cvf FileN ...

  4. Android实现图片放大缩小

    package com.min.Test_Gallery; import android.app.Activity; import android.graphics.Bitmap; import an ...

  5. Ugly Number&comma;Ugly Number II&comma;Super Ugly Number

    一.Ugly Number Write a program to check whether a given number is an ugly number. Ugly numbers are po ...

  6. Java IO详解(六&rpar;------序列化与反序列化(对象流)

    File 类的介绍:http://www.cnblogs.com/ysocean/p/6851878.html Java IO 流的分类介绍:http://www.cnblogs.com/ysocea ...

  7. Kali 2&period;0 下 Metasploit 初始化配置

    在kali 2.0中,命令行中直接输入msfconsole 提示不能连接到数据库 ,是由于postgresql 未启动.因此,需要开启postgresql,并且进行postgresql 的初始化配置. ...

  8. ili9325--LCD寄存器配置研究

    2011-06-22 22:18:12 自己根据ili9325的规格书编写驱动.发现LCD屏没显示.于是怀疑是某些寄存器设置错误.要调试的话最好还是先熟悉寄存器的作用,调试的时候只要看到现象就能分析了 ...

  9. java基础学习之接口

    接口可以说是一个特殊的抽象类,接口里的方法都是抽象方法, 接口的特点: 1.一个类可以实现多个接口,也可以在继承一个类后继续实现多个接口(多实现间接支持了类的多继承) 2.接口可以继承另一个接口,并且 ...

  10. OGNL表达式&lpar;转载&rpar;

    OGNL表达式(转载)   1.什么是OGNL OGNL:Object Graphic Navigation Language(对象图导航语言) 它是Struts2中默认的表达式语言.使用表达式需要借 ...