All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0001_0100.s0032_longest_valid_parentheses.solution.go Maven / Gradle / Ivy

There is a newer version: 1.8
Show newest version
package s0032_longest_valid_parentheses

// #Hard #Top_100_Liked_Questions #String #Dynamic_Programming #Stack #Big_O_Time_O(n)_Space_O(1)
// #2024_03_11_Time_0_ms_(100.00%)_Space_2.3_MB_(100.00%)

func longestValidParentheses(s string) int {
	max := 0
	left, right := 0, 0
	n := len(s)
	for i := 0; i < n; i++ {
		ch := s[i]
		if ch == '(' {
			left++
		} else {
			right++
		}
		if right > left {
			left, right = 0, 0
		}
		if left == right {
			max = maxInt(max, left+right)
		}
	}
	left, right = 0, 0
	for i := n - 1; i >= 0; i-- {
		ch := s[i]
		if ch == '(' {
			left++
		} else {
			right++
		}
		if left > right {
			left, right = 0, 0
		}
		if left == right {
			max = maxInt(max, left+right)
		}
	}
	return max
}

func maxInt(a, b int) int {
	if a > b {
		return a
	}
	return b
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy