CF Bracket Sequence

2024-08-28 11:08
文章标签 cf sequence bracket

本文主要是介绍CF Bracket Sequence,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://codeforces.com/problemset/problem/223/A

题意:给定一个只含有’[‘  ']'  '('  ')' 的字符串,它不一定是合法的,求出它的一个含有 '[' 最多的并合法的字串。

思路:相当于括号匹配的问题,多了判断'['的个数而已。


以 )([ ] )(  为例,该字符串每个字符对应下标为0 ,1,2,3,4,5用hash数组记录与当前字符串匹配的那个字符的下标,所以hash[0] = -1,

hash[1] = 4, hash[2] = 3,hash[3] = 2,hash[4] = 1, hash[5] = -1,如果当前字符没有被匹配,则初始化为-1,这样hash值为-1的两个字符之间就是一个合法的子串,然后求出每个合法子串中‘[’的长度,同时记录对应合法子串的起点和终点,最后取最大值即可。

#include<stdio.h>
#include<string.h>
#include<stack>
#include<algorithm>
using namespace std;struct node
{char ch;int id;
};char s[100010],tmp[100010],res[100010];
int len;
int hash[100010],ans;
stack <struct node> st;void solve()
{memset(hash,-1,sizeof(hash));while(!st.empty())st.pop();for(int i = 0; i < len; i++){if(s[i] == '[' || s[i] == '('){st.push((struct node){s[i],i});}else if(s[i] == ']'){if(!st.empty()){struct node u = st.top();if(u.ch == '['){hash[u.id] = i;hash[i] = u.id;st.pop();}else st.push((struct node){s[i],i});}else st.push((struct node){s[i],i});}else if(s[i] == ')'){if(!st.empty()){struct node u = st.top();if(u.ch == '('){hash[u.id] = i;hash[i] = u.id;st.pop();}else st.push((struct node){s[i],i});}else st.push((struct node){s[i],i});}}int cnt = 0,ans = -1,flag = 0,x,y;int i,j;for(i = 0; i < len;){if(hash[i] != -1){flag = 1;cnt = 0;for(j = i; hash[j] != -1; j++){if(s[j] == '[')cnt++;}if(cnt > ans){ans = cnt;x = i;y = j;}i = j+1;}elsei++;}if(flag == 0)printf("0\n");else{printf("%d\n",ans);for(int i = x; i < y; i++)printf("%c",s[i]);printf("\n");}
}int main()
{while(~scanf("%s",s)){len = strlen(s);solve();}return 0;
}




这篇关于CF Bracket Sequence的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1114590

相关文章

cf 164 C 费用流

给你n个任务,k个机器,n个任务的起始时间,持续时间,完成任务的获利 每个机器可以完成任何一项任务,但是同一时刻只能完成一项任务,一旦某台机器在完成某项任务时,直到任务结束,这台机器都不能去做其他任务 最后问你当获利最大时,应该安排那些机器工作,即输出方案 具体建图方法: 新建源汇S T‘ 对任务按照起始时间s按升序排序 拆点: u 向 u'连一条边 容量为 1 费用为 -c,

CF 508C

点击打开链接 import java.util.Arrays;import java.util.Scanner;public class Main {public static void main(String [] args){new Solve().run() ;} }class Solve{int bit[] = new int[608] ;int l

浙大数据结构:02-线性结构4 Pop Sequence

这道题我们采用数组来模拟堆栈和队列。 简单说一下大致思路,我们用栈来存1234.....,队列来存输入的一组数据,栈与队列进行匹配,相同就pop 机翻 1、条件准备 stk是栈,que是队列。 tt指向的是栈中下标,front指向队头,rear指向队尾。 初始化栈顶为0,队头为0,队尾为-1 #include<iostream>using namespace std;#defi

【UVA】1626-Brackets sequence(动态规划)

一道算是比较难理解的动规。 状态转移分2个: (用d[i][j]表示在i~j内最少需要添加几个括号,保持平衡) 1.如果s[i]和s[j]是一对括号,那么d[i][j] = d[i + 1][j - 1] 2.否则的话 d[i][j] = min(d[i][k],[k + 1][j]); 边界是d[i + 1][i] = 0; d[i][i] = 1; 13993644 162

【UVA】10534 - Wavio Sequence(LIS最长上升子序列)

这题一看10000的数据量就知道必须用nlog(n)的时间复杂度。 所以特意去看了最长上升子序列的nlog(n)的算法。 如果有2个位置,该位置上的元素为A[i]和A[j],并且他们满足以下条件: 1.dp[i] = dp[j]    (dp[x]代表以x结尾的最长上升子序列长度) 2.A[i] < A[j] 3.i < j 那么毫无疑问,选择dp[i] 一定优于选择dp[j] 那么

【CF】C. Glass Carving(二分 + 树状数组 + 优先队列 + 数组计数)

这题简直蛋疼死。。。。。 A了一下午 #include<cstdio>#include<queue>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const int maxn = 200005;int h,w,n;int C1[maxn],C2[maxn];int

【CF】E. Anya and Cubes(双向DFS)

根据题意的话每次递归分3种情况 一共最多25个数,时间复杂度为3^25,太大了 我们可以分2次求解第一次求一半的结果,也就是25/2 = 12,记录结果 之后利用剩余的一半求结果 s-结果 = 之前记录过的结果 就可以 时间复杂度降低为 3 ^ (n/2+1) 题目链接:http://codeforces.com/contest/525/problem/E #include<set

【CF】D. Arthur and Walls(BFS + 贪心)

D题 解题思路就是每次检查2X2的方格里是否只有一个‘*’,如果有的话这个*就需要变成‘.’,利用BFS进行遍历,入队的要求是这个点为. 一开始将所有的'.'全部加入队列,如果碰到一个'*'变成'.'就入队,判断的时候从4个方向就行判断 题目链接:http://codeforces.com/contest/525/problem/D #include<cstdio>#include<

CF#271 (Div. 2) D.(dp)

D. Flowers time limit per test 1.5 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/474/problem/D We s

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl