LeetCode - 32. Longest Valid Parentheses

简介: 32. Longest Valid Parentheses  Problem's Link  ---------------------------------------------------------------------------- Mean:  给定一个由'('和')'组成的字符串,求最长连续匹配子串长度.

32. Longest Valid Parentheses 

Problem's Link

 ----------------------------------------------------------------------------

Mean: 

给定一个由'('和')'组成的字符串,求最长连续匹配子串长度.

analyse:

定义一个stack<pair<char,int>>类型的stack.

遇到'('进栈;

遇到')'需要分两种情况讨论:

  1. 栈顶元素为'(',正好匹配,将栈顶元素出栈;
  2. 栈顶元素为')'或栈为空,将当前符号和下标入栈.

这个栈构建完以后,我们只需要找这个栈中相邻两个top.second()之差即可.

trick:注意'(()'这种情况,需要特判,即backVal的值为len.

Time complexity: O(N)

 

view code

/**
* -----------------------------------------------------------------
* Copyright (c) 2016 crazyacking.All rights reserved.
* -----------------------------------------------------------------
*       Author: crazyacking
*       Date  : 2016-03-01-20.35
*/
#include <queue>
#include <cstdio>
#include <set>
#include <string>
#include <stack>
#include <cmath>
#include <climits>
#include <map>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long( LL);
typedef unsigned long long( ULL);
const double eps( 1e-8);

class Solution
{
public :
    int longestValidParentheses( string s)
    {
        int len =s . length();
        stack < pair < char , int >> sta;
        for( int i = 0; i < len; ++ i)
        {
            if(s [ i ] == '(')
                sta . push( make_pair( '(' , i));
            else
            {
                if( ! sta . empty())
                {
                    pair < char , int > t = sta . top();
                    if( t . first == '(')
                        sta . pop();
                    else
                        sta . push( make_pair( ')' , i));
                }
                else
                    sta . push( make_pair( ')' , i));
            }
        }

        int ans = 0 , frontVal = len , backVal;
        if( ! sta . empty() && sta . top (). second != len - 1)
            backVal = len;
        else
            backVal = len - 1;
        while( ! sta . empty())
        {
            pair < char , int > t = sta . top();
            sta . pop();
            frontVal = t . second;
            ans = max( ans , backVal - frontVal - 1);
            backVal = frontVal;
        }
        ans = max( ans , frontVal - 0);
        return ans;
    }
};

int main()
{
    Solution solution;
    string s;
    while( cin >>s)
    {
        cout << solution . longestValidParentheses(s) << endl;
    }
    return 0;
}
/*

*/
目录
相关文章
Leetcode 516. Longest Palindromic Subsequence
找到一个字符串的最长回文子序列,这里注意回文子串和回文序列的区别。子序列不要求连续,子串(substring)是要求连续的。leetcode 5. Longest Palindromic Substring就是求连续子串的。
48 0
|
5月前
|
存储 SQL 算法
LeetCode 题目 65:有效数字(Valid Number)【python】
LeetCode 题目 65:有效数字(Valid Number)【python】
|
Java
Leetcode 3. Longest Substring Without Repeating Characters
此题题意是找出一个不包含相同字母的最长子串,题目给出了两个例子来说明题意,但这两个例子具有误导性,让你误以为字符串中只有小写字母。还好我是心机boy,我把大写字母的情况也给考虑进去了,不过。。。。字符串里竟然有特殊字符,于是贡献了一次wrong answer,这次我把ascii字符表都考虑进去,然后就没问题了。这个故事告诫我们在编程处理问题的时候一定要注意输入数据的范围,面试中可以和面试官去确认数据范围,也能显得你比较严谨。
50 3
LeetCode Contest 178-1368. 使网格图至少有一条有效路径的最小代价 Minimum Cost to Make at Least One Valid Path in a Grid
LeetCode Contest 178-1368. 使网格图至少有一条有效路径的最小代价 Minimum Cost to Make at Least One Valid Path in a Grid
LeetCode 424. Longest Repeating Character Replacem
给你一个仅由大写英文字母组成的字符串,你可以将任意位置上的字符替换成另外的字符,总共可最多替换 k 次。在执行上述操作后,找到包含重复字母的最长子串的长度。
104 0
LeetCode 424. Longest Repeating Character Replacem
LeetCode 409. Longest Palindrome
给定一个包含大写字母和小写字母的字符串,找到通过这些字母构造成的最长的回文串。 在构造过程中,请注意区分大小写。比如 "Aa" 不能当做一个回文字符串。
74 0
LeetCode 409. Longest Palindrome
LeetCode 395. Longest Substring with At Least K
找到给定字符串(由小写字符组成)中的最长子串 T , 要求 T 中的每一字符出现次数都不少于 k 。输出 T 的长度。
90 0
LeetCode 395. Longest Substring with At Least K
|
Windows
LeetCode 388. Longest Absolute File Path
我们致力于寻找我们文件系统中文件的最长 (按字符的数量统计) 绝对路径。例如,在上述的第二个例子中,最长路径为 "dir/subdir2/subsubdir2/file2.ext",其长度为 32 (不包含双引号)。
83 0
LeetCode 388. Longest Absolute File Path
LeetCode 367. Valid Perfect Square
给定一个正整数 num,编写一个函数,如果 num 是一个完全平方数,则返回 True,否则返回 False。
95 0
LeetCode 367. Valid Perfect Square
|
存储
LeetCode 329. Longest Increasing Path in a Matrix
给定一个整数矩阵,找出最长递增路径的长度。 对于每个单元格,你可以往上,下,左,右四个方向移动。 你不能在对角线方向上移动或移动到边界外(即不允许环绕)。
70 0
LeetCode 329. Longest Increasing Path in a Matrix