-
Notifications
You must be signed in to change notification settings - Fork 0
/
brackets.cpp
57 lines (54 loc) · 1.16 KB
/
brackets.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
// Author : Hitesh Kaushik
// Compilation : g++ <filename.cpp>
// Run : ./a.out
#include <bits/stdc++.h>
using namespace std;
void check(string s){
bool ok = true;
stack<char> st;
for(char c : s){
if(c == '(' || c == '{' || c == '[')
st.push(c);
else{
if(c == ')'){
if(!st.empty() && st.top() == '(')
st.pop();
else{
ok = false;
break;
}
}
else if(c == '}'){
if(!st.empty() && st.top() == '{')
st.pop();
else{
ok = false;
break;
}
}
else{
if(!st.empty() && st.top() == '[')
st.pop();
else{
ok = false;
break;
}
}
}
}
if(ok && st.empty())
cout << "YES\n";
else
cout << "NO\n";
}
int main()
{
int n;
cin >> n;
while(n--){
string s;
cin >> s;
check(s);
}
return 0;
}