-
Notifications
You must be signed in to change notification settings - Fork 0
/
2941.cpp
executable file
·119 lines (103 loc) · 2.12 KB
/
2941.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include<iostream>
#include<sstream>
#include<fstream>
#include<string>
#include<algorithm>
#include<stdexcept>
#include<memory>
#include<vector>
#include<list>
#include<map>
#include<set>
#include<numeric>
// using namespace std;
// enum State{
// start,ready,done
// };
// char bool_to_int(bool n){
// if(n==true){
// return 1;
// }else{return 0;}
// }
// bool is_croatian(string::iterator& p){
// string::iterator next = p;
// ++next;
// switch(*p){
// case 'c':
// if(*next == '=' || *next == '-') return true;
// else return false;
// break;
// case 'l':
// if(*next == 'j') return true;
// else return false;
// break;
// case 'd':
// if(*next == '-') return true;
// else return false;
// break;
// case 'n':
// if(*next == 'j') return true;
// else return false;
// break;
// case 's':
// if(*next == '=') return true;
// else return false;
// break;
// case 'z':
// if(*next == '=') return true;
// else return false;
// break;
// default:
// return false;
// break;
// }
// }
// bool is_b(string::iterator p){
// string::iterator next = p;
// ++next;
// if(*(p) == 'z' && *(next) == '='){
// return true;
// }
// return false;
// }
// int main(){
// string line;
// getline(cin,line);
// auto p = line.begin();
// State state = start;
// string new_line;
// while(p!=line.end()){
// switch(state){
// case start:
// if(is_croatian(p)){
// new_line += *p;
// ++p;
// ++p;
// }
// else{
// if(*p == 'd'){
// state = ready;
// new_line += *p;
// ++p;
// }
// else{
// new_line += *p;
// ++p;
// }
// }
// break;
// case ready:
// if(is_b(p)){
// ++p;
// ++p;
// state= start;
// }else{
// state = start;
// }
// break;
// case done:
// break;
// }
// }
// cout << new_line.size() << '\n';
// }