0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:45:24 +00:00
OI-codes/Luogu/problem/UVA673/UVA673.cpp
2021-01-02 15:30:52 +08:00

35 lines
734 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin >> t;
getchar();
while (t--) {
string s;
stack<char> st;
getline(cin, s);
for (int i = 0; i < s.size(); i++) {
if (s[i] == '(' || s[i] == '[') {
st.push(s[i]);
}
else if (st.empty() || s[i] == ')' && st.top() != '(' || s[i] == ']' && st.top() != '[') {
cout << "No" << endl;
goto end;
}
else {
st.pop();
}
}
if (st.empty()) {
cout << "Yes" << endl;
}
else {
cout << "No" << endl;
}
end:;
}
return 0;
}