0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:25:24 +00:00
OI-codes/Luogu/UVA673/UVA673.cpp

32 lines
702 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;
}