• Codeforces Round #459 (Div. 2) C (括号问题)


    C. The Monster
     

    As Will is stuck in the Upside Down, he can still communicate with his mom, Joyce, through the Christmas lights (he can turn them on and off with his mind). He can't directly tell his mom where he is, because the monster that took him to the Upside Down will know and relocate him.

    Thus, he came up with a puzzle to tell his mom his coordinates. His coordinates are the answer to the following problem.

    A string consisting only of parentheses ('(' and ')') is called a bracket sequence. Some bracket sequence are called correct bracket sequences. More formally:

    • Empty string is a correct bracket sequence.
    • if s is a correct bracket sequence, then (s) is also a correct bracket sequence.
    • if s and t are correct bracket sequences, then st (concatenation of s and t) is also a correct bracket sequence.

    A string consisting of parentheses and question marks ('?') is called pretty if and only if there's a way to replace each question mark with either '(' or ')' such that the resulting string is a non-empty correct bracket sequence.

    Will gave his mom a string s consisting of parentheses and question marks (using Morse code through the lights) and his coordinates are the number of pairs of integers (l, r) such that 1 ≤ l ≤ r ≤ |s| and the string slsl + 1... sr is pretty, where si is i-th character of s.

    Joyce doesn't know anything about bracket sequences, so she asked for your help.

    Input

    The first and only line of input contains string s, consisting only of characters '(', ')' and '?' (2 ≤ |s| ≤ 5000).

    Output

    Print the answer to Will's puzzle in the first and only line of output.

    Examples
    input
    ((?))
    output
    4
    input
    ??()??
    output
    7
    Note

    For the first sample testcase, the pretty substrings of s are:

    1. "(?" which can be transformed to "()".
    2. "?)" which can be transformed to "()".
    3. "((?)" which can be transformed to "(())".
    4. "(?))" which can be transformed to "(())".

    For the second sample testcase, the pretty substrings of s are:

    1. "??" which can be transformed to "()".
    2. "()".
    3. "??()" which can be transformed to "()()".
    4. "?()?" which can be transformed to "(())".
    5. "??" which can be transformed to "()".
    6. "()??" which can be transformed to "()()".
    7. "??()??" which can be transformed to "()()()".

     

    在网上看到一种很巧妙的解法,字符串不是很大,那么就可以暴力循环了。

    当是?时   l代表左括号 ,r代表右括号

    当是(时 l,r 加1

    当是)时 l,r  减一

    等于0是就说明有一个符合了

    r小于0时就加2,相当于让一个?本该改成)的而改成(

    l小于0时后面就没有符合的了

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 char str[5001];
     4 int main() {
     5     cin >> str;
     6     int len = strlen(str);
     7     int ans = 0;
     8     for(int i = 0; i < len; i ++) {
     9         int l = 0, r = 0;
    10         for(int j = i; j < len; j ++) {
    11             if(str[j] == '(') l++,r++;
    12             if(str[j] == ')') l--,r--;
    13             if(str[j] == '?') l++,r--;
    14             if(l < 0) break;
    15             if(r < 0) r+= 2;
    16             if(r == 0) ans++;
    17         }
    18     }
    19     printf("%d
    ",ans);
    20     return 0;
    21 }
  • 相关阅读:
    Linux常用命令
    杀死进程端口
    Spring boot项目的打包发布
    关于xshell和文件传输相关
    Windows10开发环境搭建
    Windows10设置系统参数
    windows10禁止更新
    Postgresql9.6基础使用(Windows 解压版)
    (转载)Thingsboard入门教程:本地环境搭建和源码编译安装,献给thingsboard编译失败的同学,教程不断完善中,文章最后是thingsboard常见编译失败的问题总结
    系统同时安装 Open JDK and Oracle JDK(Ubuntu16.04)
  • 原文地址:https://www.cnblogs.com/xingkongyihao/p/8387708.html
Copyright © 2020-2023  润新知