博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF 917A The Monster 【括号匹配】
阅读量:6296 次
发布时间:2019-06-22

本文共 838 字,大约阅读时间需要 2 分钟。

【链接】:

ExamplesinputCopy((?))outputCopy4inputCopy??()??outputCopy7说明For the first sample testcase, the pretty substrings of s s are:"(?" which can be transformed to "()"."?)" which can be transformed to "()"."((?)" which can be transformed to "(())"."(?))" which can be transformed to "(())".For the second sample testcase, the pretty substrings of s s are:"??" which can be transformed to "()"."()"."??()" which can be transformed to "()()"."?()?" which can be transformed to "(())"."??" which can be transformed to "()"."()??" which can be transformed to "()()"."??()??" which can be transformed to "()()()".

【题意】:

给你一个字符串只包含'(' 、‘ )’ 、‘ ?’三种字符,?你可以按需求转换成‘(’或’)‘
定义一个区间为正确的括号序列,当且仅当对该区间进行如下操作之后,该序列为空:每次删除序列中一对相邻的左右括号(),直到删到不能再删
Input
一个长度不超过5000的字符串
Output
能转换成正确的括号序列的子区间数量
【分析】:
【代码】:

转载于:https://www.cnblogs.com/Roni-i/p/9215580.html

你可能感兴趣的文章
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>
SHELL实现跳板机,只允许用户执行少量允许的命令
查看>>
SpringBoot 整合Redis
查看>>
2014上半年大片早知道
查看>>
Android 6.0指纹识别App开发案例
查看>>