A string is a valid parentheses string (denoted VPS) if and only if it consists of "(" and ")" characters only, and:
- It is the empty string, or
- It can be written as
AB(Aconcatenated withB), whereAandBare VPS’s, or - It can be written as
(A), whereAis a VPS.
We can similarly define the nesting depth depth(S) of any VPS S as follows:
depth("") = 0depth(A + B) = max(depth(A), depth(B)), whereAandBare VPS’sdepth("(" + A + ")") = 1 + depth(A), whereAis a VPS.
For example, "", "()()", and "()(()())" are VPS’s (with nesting depths 0, 1, and 2), and ")(" and "(()" are not VPS’s.
Given a VPS seq, split it into two disjoint subsequences A and B, such that A and B are VPS’s (and A.length + B.length = seq.length).
Now choose any such A and B such that max(depth(A), depth(B)) is the minimum possible value.
Return an answer array (of length seq.length) that encodes such a choice of A and B: answer[i] = 0 if seq[i] is part of A, else answer[i] = 1. Note that even though multiple answers may exist, you may return any of them.
Example 1:
Input: seq = "(()())" Output: [0,1,1,1,1,0]
Example 2:
Input: seq = "()(())()" Output: [0,0,0,1,1,0,1,1]
Constraints:
1 <= seq.size <= 10000
The question description is a little bit tricky, so I couldn’t fully understand in my first try. Therefore, I watch through the first 6 mins of this video (https://www.youtube.com/watch?v=q_53SO8Bz_o).
The idea is trying to assign the parentheses equally to sequence A and sequence B, so we can get the min of depth.
class Solution:
def maxDepthAfterSplit(self, seq: str) -> List[int]:
result = []
a_seq = []
b_seq = []
for i in range(len(seq)):
if seq[i] == '(':
if len(a_seq) <= len(b_seq):
a_seq.append(i)
result.append(0)
else:
b_seq.append(i)
result.append(1)
else:
if a_seq and b_seq:
if a_seq[-1] > b_seq[-1]:
a_seq.pop()
result.append(0)
else:
b_seq.pop()
result.append(1)
elif a_seq:
a_seq.pop()
result.append(0)
elif b_seq:
b_seq.pop()
result.append(1)
return result
搶先發佈留言