-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_2116.cpp
32 lines (32 loc) · 813 Bytes
/
_2116.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
class Solution {
public:
bool canBeValid(string s, string locked) {
int n = s.size();
for(int i = 0;i<n;i++)
{
if(locked[i]=='0')
s[i] = '*';
}
cout<<s<<endl;
stack<int> open,star;
for(int i = 0;i<n;i++)
{
if(s[i]=='(') open.push(i);
else if(s[i]=='*') star.push(i);
else if(s[i]==')')
{
if(!open.empty()) open.pop();
else if(!star.empty()) star.pop();
else return false;
}
}
while(!open.empty() && !star.empty() && open.top() < star.top())
{
open.pop();
star.pop();
}
if(star.size()%2)
return false;
return (open.empty());
}
};