A parentheses string is a non-empty string consisting only of '('
and ')'
. It is valid if any of the following conditions is true:
- It is
()
. - It can be written as
AB
(A
concatenated withB
), whereA
andB
are valid parentheses strings. - It can be written as
(A)
, whereA
is a valid parentheses string. You are given a parentheses strings
and a stringlocked
, both of lengthn
.locked
is a binary string consisting only of'0'
s and'1'
s. For each indexi
oflocked
,
If locked[i]
is '1'
, you cannot change s[i]
.
But if locked[i]
is '0'
, you can change s[i]
to either '('
or ')'
.
Return true
if you can make s
a valid parentheses string. Otherwise, return false
.
Example 1:
Input: s = "))()))", locked = "010100" Output: true Explanation: locked[1] == '1' and locked[3] == '1', so we cannot change s[1] or s[3]. We change s[0] and s[4] to '(' while leaving s[2] and s[5] unchanged to make s valid.
Example 2:
Input: s = "()()", locked = "0000" Output: true Explanation: We do not need to make any changes because s is already valid.
Example 3:
Input: s = ")", locked = "0" Output: false Explanation: locked permits us to change s[0]. Changing s[0] to either '(' or ')' will not make s valid.
Constraints:
n == s.length == locked.length
- 1 <= n <=
$10^5$ -
s[i]
is either'('
or')'
. -
locked[i]
is either'0'
or'1'
.
/**
* @param {string} s
* @param {string} locked
* @return {boolean}
*/
var canBeValid = function(s, locked) {
if(s.length % 2 == 1){
return false
}
const lockedIndex = [];
const unlockedIndex = [];
for(let i = 0;i < s.length; i++){
if(locked[i] == '0'){
unlockedIndex.push(i);
} else if (s[i] == '('){
lockedIndex.push(i);
} else {
if(lockedIndex.length > 0){
lockedIndex.pop();
} else if(unlockedIndex.length > 0){
unlockedIndex.pop();
} else {
return false
}
}
}
while (lockedIndex.length > 0 && unlockedIndex.length > 0 && unlockedIndex[unlockedIndex.length -1] > lockedIndex[lockedIndex.length - 1]){
lockedIndex.pop();
unlockedIndex.pop();
}
if(lockedIndex.length > 0){
return false
}
return true;
};