forked from BryanCruz/competitive-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
desafio_diario_niv1_versao2.cpp
56 lines (47 loc) · 1.32 KB
/
desafio_diario_niv1_versao2.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
#include <string>
#include <iostream>
using namespace std;
int main(){
bool check;
string tex;
do{
tex = "";
cin >> tex;
//getline (cin, tex);
int contD = 0;
int contE = 0;
for(string::size_type i = 0; i < tex.length(); i++){
if(tex[i] == ('[')){
contD++;
}
if(tex[i] == (']')){
contE++;
}
}
if((contD == contE)&&(contD + contE == tex.length())) { //já admite como farsa se tiverem irregularidades na linha inserida
do{
check = true;
string::size_type j = 0;
if (tex[j]== '['){
do {
j++; //vai passando até encontrar um ]
}while(tex[j] == '[');
tex.erase ((j-1),2);
if(tex.length() == 0){ //zerar a string significa que foi consistente até o final
cout << "consistente" << endl;
tex.erase (0,2);
check = false;
}
}
else{
cout<<"farsa" << endl;
check = false; //exibe farsa e para o loop
}
}while(check == true);
}
else{
cout << "farsa" << endl;
}
}while(tex != "n");
cout<<"n";
}