-
Notifications
You must be signed in to change notification settings - Fork 0
/
balancedparentheisis.cpp
73 lines (69 loc) · 1.37 KB
/
balancedparentheisis.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <iostream>
#include <vector>
#include <cstring>
#include <stack>
using namespace std;
bool isOpen(char c)
{
if(c == '(' || c == '{' || c == '[')
return true;
return false;
}
bool isBalanced(char popped, char now)
{
if(popped == '(' && now ==')')
return true;
if(popped == '[' && now ==']')
return true;
if(popped == '{' && now =='}')
return true;
return false;
}
int main()
{
int t;
cin>>t;
while(t--)
{
stack<char> s;
string str;
cin>>str;
int no = 0;
for(int i = 0; i < str.length(); i++)
{
char now = str[i];
if(isOpen(now))
s.push(now);
else
{
char popped;
if(s.size() > 0)
{
popped = s.top();
s.pop();
}
else
{
no = 1;
break;
}
if(isBalanced(popped, now))
continue;
else
{
no = 1;
break;
}
}
}
if(s.size() != 0)
no = 1;
if(no)
cout<<"NO\n";
else
{
cout<<"YES\n";
}
}
return 0;
}