-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMismatched_Brackets.cpp
83 lines (72 loc) · 1.38 KB
/
Mismatched_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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Mismatched Brackets
// https://algospot.com/judge/problem/read/BRACKETS2
#include <stdio.h>
#include <string.h>
int main()
{
int nTestCases;
char * brackets = NULL;
int * depths = NULL;
scanf("%d", &nTestCases);
while (nTestCases--)
{
brackets = new char[10001];
depths = new int[5001];
for (int i = 0; i < 5001; i++)
{
depths[i] = 0;
}
scanf("%s", brackets);
int bracketPosition = 0;
int depthPosition = 0;
// Verify brackets complete or not
while (brackets[bracketPosition] != '\0')
{
// Search until string is finished
switch (brackets[bracketPosition])
{
case '(':
depths[depthPosition] = 1;
depthPosition++;
break;
case '{':
depths[depthPosition] = 2;
depthPosition++;
break;
case '[':
depths[depthPosition] = 3;
depthPosition++;
break;
case ')':
depthPosition--;
depths[depthPosition] -= 1;
break;
case '}':
depthPosition--;
depths[depthPosition] -= 2;
break;
case ']':
depthPosition--;
depths[depthPosition] -= 3;
break;
}
if (depths[depthPosition] != 0)
{
// Break loop when current bracket is verified as abnormaly closed
break;
}
bracketPosition++;
}
if (depthPosition != 0)
{
// A bracket is abnormaly closed
printf("NO\n");
}
else
{
// All brackets closed completely
printf("YES\n");
}
}
return 0;
}