TOPCODER SAM 686 div1 300

// TOPCODER SAM 686 div1 300

Problem Statement

带有小中括号的括号序列,问可以去掉多少子串,使得剩下的非空串是合法的。

Constraints

字符串长度不超过 40。

Examples

// ans[i] = count(s[i])
string s[] = {"()[]", "())", "()()", "([)]", "())[]][]([]()]]()]]]"};
int ans[] = {3, 2, 4, 2, 3854};

Solution

寻找反面,等价于有多少非空的子串是合法的。这是一个区间 dp,不难转移。

Code

  1. #include <string.h>



  2. #include <string> 


  3. const int N = 123; 


  4. class BracketSequenceDiv1 



  5. int n; 

  6. char str[N]; 

  7. long long dp[N][N]; 


  8. public: 

  9. long long count(std::string std_str) 



  10. n = std_str.size(); 

  11. for (int i = 1; i <= n; ++i) { 

  12. str[i] = std_str[i-1]; 



  13. memset(dp, 0, sizeof(dp)); 

  14. return count(n); 




  15. long long count(int n) 



  16. for (int d = 1; d <= n; ++d) { 

  17. for (int i = 1; i + d - 1 <= n; ++i) { 

  18. int j = i + d - 1; 

  19. dp[i][j] = dp[i][j-1]; 

  20. if (str[j] == ‘)‘) { 

  21. for (int k = i; k < j; ++k) { 

  22. // dp[i k-1] ( dp[k+1, j-1] ) 

  23. if (str[k] == ‘(‘) { 

  24. dp[i][j] += (dp[i][k-1] + 1) * (dp[k+1][j-1] + 1); 







  25. else if (str[j] == ‘]‘) { 

  26. for (int k = i; k < j; ++k) { 

  27. // dp[i, k-1] [ dp[k+1, j-1] ] 

  28. if (str[k] == ‘[‘) { 

  29. dp[i][j] += (dp[i][k-1] + 1) * (dp[k+1][j-1] + 1); 











  30. return dp[1][n]; 



  31. }; 

时间: 2024-10-06 04:03:57

TOPCODER SAM 686 div1 300的相关文章

Topcoder SRM 283 Div1 300

题意:二维空间中给n个点,求一条直线(直线只可平行于x轴或y轴或两条对角线),使得最多的点到该直线距离不超过D,返回最大数量值.n不超过50 解法:设直线为ax+by+c=0,将每个点和两两点的中点分别作为关键点,枚举每个关键点,再枚举四条过关键点的直线,求出到该直线距离不超过D的点数量.维护数量最大值即可.复杂是O(n3) Code #include<cmath> #include<cstdlib> #include<cstring> #include<algo

Topcoder SRM 525 Div1 300

题意:给一个n*m的矩形,每个方格要不为空,要不有金币,每次你可以将矩形所有金币选择一个方向(上下左右)移动一格,如果移动后有金币出矩形了,则该金币消失.问最少步骤使得方格金币恰好为K (1≤n,m≤30) 解法:枚举每个子矩形,如果该子矩形含有金币数量恰好为K,则贪心算出得到该子矩形的代价,即上下移动算一次代价,左右移动算一次代价,两次代价都分别等于 移动次数最小值*2+移动次数最大值 Code #include<cstdio> #include<algorithm> #incl

topcoder srm 686 div1 -3

1.给出只包含'(',')','[',']'的字符串$s$,删除一些字符,使得剩下的是合法的括号.有多少种删除方法? $|s|\leq 40$ 思路:左括号和右括号较少的一种不会大于20.假设左括号少.设$f[i][mask][k]$表示处理了前$i$个字符,其中留下的字符以$k$开头($k=0$表示'(',$k=1$表示'['),且所有留下的字符状态为$mask$,($mask$的最高位为1,其他位为0表示另一种括号,否则表示跟最高位相同的符号). #include <stdio.h> #i

Topcoder SRM 327 Div1 300!

题意:给一个字符串,含有大写字母或者问号'?'.一个字符串被定义为ugly,则能在字符串中找到三个连续的元音字符或者五个非元音字符:一个字符串被定义为nice,则它不是ugly的.现在问,可否改将所有'?'变成字符,使得字符串成为nice或ugly的,如果都可以,输出"47",如果只能一个,输出"UGLY"或"NICE". 解法:对于是否可为ugly的情况,很简单,将每个'?'都变为元音,看是否存在3个连续的元音,再将每个'?'变为非元音,再看是

Topcoder SRM 643 Div1 250&lt;peter_pan&gt;

Topcoder SRM 643 Div1 250 Problem 给一个整数N,再给一个vector<long long>v; N可以表示成若干个素数的乘积,N=p0*p1*p2*......*pn,我们假设p0,p1,...,pn是单调不降的,那么v里存储的是下标为偶数 的N的质因数p0,p2,p4,...,p(2k).现在要求写一个程序,返回一个vector<long long>ans; ans里存储的是p0,p1,p2,...,pn. Limits Time Limit(m

TOPCODER SRM 686 div2 1000

// TOPCODER SRM 686 div2 1000 Problem Statement 给出一个至多长 100 的字符串,仅包含 ( 和 ),问其中有多少个不重复的,合法的括号子序列. 子序列可以不连续:合法即括号序列的合法:答案模 1,000,000,007. Examples "(())(" Returns: 2 Correct non-empty bracket subsequences are "()" and "(())". &

Topcoder SRM 648 Div1 250

Problem 给一个长度为N的"AB"字符串S,S只含有两种字符'A' 或 'B',设pair(i,j)(0=<i<j<N)表示一对 i,j 使得S[i]='A',S[j]='B'.现给定一个K,求字符串S,使得pair(i,j)的个数恰好为K.若不存在,则返回空串. Limits Time Limit(ms): 2000 Memory Limit(MB): 256 N: [2, 50] K: [0 , N*(N-1)/2 ] Solution 若K>(N/2

Topcoder SRM 627 div1 HappyLettersDiv1 : 字符串

Problem Statement      The Happy Letter game is played as follows: At the beginning, several players enter the field. Each player has a lowercase English letter on their back. The game is played in turns. In each turn, you select two players with dif

topcoder srm 738 div1 FindThePerfectTriangle(枚举)

Problem Statement      You are given the ints perimeter and area. Your task is to find a triangle with the following properties: The coordinates of each vertex are integers between 0 and 3000, inclusive. The perimeter of the triangle must be exactly