-
Notifications
You must be signed in to change notification settings - Fork 4
/
1069.c
44 lines (33 loc) · 1.13 KB
/
1069.c
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
//Questão 1069 - Diamantes e Areia - URI Online Judge
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(){
int n, i, diamantes, abertura, fechamento;
char inp[1005];
scanf("%d", &n);
while(n--){
scanf("%s", inp);
abertura = 0;
fechamento = 0;
for(i = 0; i < strlen(inp); i++){
switch(inp[i]){
//Caso seja caractere de abertura, empilha
case '<':
abertura++;
break;
//Caso seja de fechamento, se a pilha não estiver vazia, desempilha e incrementa o numero de diamantes
case '>':
if(fechamento < abertura)
fechamento++;
break;
default:
break;
}
}
//O total de diamantes é a quantidade de aberturas + fechamentos - a diferença entre eles (aberturas sem fechamentos e vice-versa).
diamantes = ((abertura + fechamento) - abs(abertura - fechamento)) / 2;
printf("%d\n", diamantes);
}
return 0;
}