-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp20.cpp
54 lines (48 loc) · 1.08 KB
/
p20.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
#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
#include<stack>
using namespace std;
class Solution {
public:
int convert(char c) {
if (c=='(') return 1;
if (c=='[') return 2;
if (c=='{') return 3;
if (c==')') return -1;
if (c==']') return -2;
if (c=='}') return -3;
return 0;
}
bool isValid(string s) {
stack<int> h;
for (auto v:s) {
auto t=convert(v);
if (t>0) h.push(t);
else if (h.empty()==false) {
auto p=h.top();
if (p+t!=0) return false;
h.pop();
}
else
return false;
}
if (h.empty()==true)
return true;
return false;
}
};
static const auto io_sync_off = []()
{
// turn off sync
std::ios::sync_with_stdio(false);
// untie in/out streams
std::cin.tie(nullptr);
return nullptr;
}();
int main() {
auto res = Solution().isValid(")");
cout << res <<endl;
return 0;
}