-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathABC394D.cpp
More file actions
40 lines (40 loc) · 821 Bytes
/
ABC394D.cpp
File metadata and controls
40 lines (40 loc) · 821 Bytes
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
/*
* @FilePath: \c++\ABC394D.cpp
* @Author: WRT_Partisan
* @Date: 2025-02-22 20:13:40
*/
#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef unsigned long long ull;
string st;
stack<char> s;
signed main()
{
cin >> st;
for (auto i : st)
{
if (i == '(' || i == '[' || i == '<')
s.push(i);
else
{
if (s.empty())
{
printf("No");
return 0;
}
if ((i == ')' && s.top() == '(') || (i == ']' && s.top() == '[') || (i == '>' && s.top() == '<'))
s.pop();
else
{
printf("No");
return 0;
}
}
}
if (s.empty())
printf("Yes");
else
printf("No");
return 0;
}