-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2406.cpp
57 lines (57 loc) · 1.49 KB
/
2406.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2406
#include <cstdio>
#include <cstring>
#define MAX 100010
int tam, n, i, j, tamanho;
char pilha[MAX], entrada[MAX];
void clear() { tam = 0; }
void push(char x) { pilha[++tam] = x; }
void pop() {
if (tam > 0) tam--;
}
char top() { return pilha[tam]; }
int main() {
scanf("%d", &n);
for (i = 0; i < n; i++) {
clear();
scanf("%s", entrada);
tamanho = strlen(entrada);
bool verdade = true;
for (j = 0; j < tamanho; j++) {
if (entrada[j] == '(')
push('(');
else if (entrada[j] == '[')
push('[');
else if (entrada[j] == '{')
push('{');
else if (entrada[j] == ')') {
if (top() == '(')
pop();
else {
verdade = false;
break;
}
} else if (entrada[j] == ']') {
if (top() == '[')
pop();
else {
verdade = false;
break;
}
} else if (entrada[j] == '}') {
if (top() == '{')
pop();
else {
verdade = false;
break;
}
}
}
if (verdade && tam == 0)
printf("S\n");
else
printf("N\n");
}
return 0;
}