-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathextra_ChromosomeMatch.cpp
219 lines (191 loc) · 3.74 KB
/
extra_ChromosomeMatch.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
#include <iostream>
#include <string>
#include <vector>
using namespace std;
bool globe(string);
bool eyespot(string);
bool leg(string);
/*
must start with one or more A's
the number of A's determines the size of the globe
A's are followed by CAT or TAC
is terminated by a single A
*/
bool globe(string input)
{
string temp;
int x = 0;
// traverse the whole string
while (x < input.length())
{
// proceed as we come across the A's
if (input[x] == 'A')
{
x++;
}
else
{
// condition to check the following substring after the A's
// we traverse 3 steps if the strings match else we signal the sequence is not valid
temp = input.substr(x, 3);
if (temp == "TAC" || temp == "CAT")
{
x += 3;
}
else
{
return false;
}
}
}
// checking that the end only has a single A
if (input[input.length() - 1] == 'A' && input[input.length() - 2] != 'A')
{
return true;
}
return false;
}
/*
starts with a T
if is on a stalk it will include legs
if not on a stalk it will have the pattern AG until the end
terminates with AG
*/
bool eyespot(string input)
{
// assure the first base starts with T
if (input[0] == 'T')
{
int x = 1;
// traverse the string
while (x < input.length())
{
// check if it is on a stalk
if (input[x] == 'C')
{
int y;
// loop to locate the end of a possible leg
for (y = x; y < input.length() - 2; y++)
{
if (input[y] == 'T')
{
break;
}
}
// condition to check the leg found is valid
if (leg(input.substr(x, (y - x) + 1)))
{
x = y + 1;
}
else
{
return false;
}
}
else if (input[x] == 'A' && input[x+1] == 'G') // condition checking the alternative of not being on a stalk
{
x += 2;
}
else
{
return false;
}
}
return true;
}
return false;
}
/*
starts with a C
followed by one or more G's
the number of G's determine the length of the leg
terminated with a T
*/
bool leg(string input)
{
// condition checking for first and last characters
if (input[0] == 'C' && input[input.length() - 1] == 'T')
{
int x = 1;
// all characters in between the start and end must be a G
while (x < input.length() - 1)
{
if (input[x] != 'G')
{
return false;
}
x++;
}
return true;
}
return false;
}
/*
the string will include a single head and is followed by one or more body segments
the head has a globe and ore or more eyespots
the single or multiple body segments consist of a globe followed by one or more legs
*/
bool squirmy(string input)
{
bool globeFound = false;
bool eyepotFound = false;
bool legFound = false;
int lastindex = 0;
for (int x = 4; x < input.length(); x++)
{
// locate the globe
if (!globeFound && globe(input.substr(lastindex, (x + 1) - lastindex)))
{
globeFound = true;
lastindex = x + 1;
x++;
}
// condition to locate the one or more eye spots
else if (globeFound && eyespot(input.substr(lastindex, (x + 1) - lastindex)))
{
eyepotFound = true;
globeFound = false;
lastindex = x + 1;
x++;
}
// locating the one or more legs
else if (globeFound && eyepotFound && leg(input.substr(lastindex, (x + 1) - lastindex)))
{
legFound = true;
lastindex = x + 1;
x++;
}
else
{
legFound = false;
}
}
if (globeFound && eyepotFound && legFound)
{
return true;
}
else
{
return false;
}
}
int main()
{
vector <string> chromosomes;
// taking input for the chromosomes
int num;
cin >> num;
for (int x = 0; x < num; x++)
{
string temp;
cin >> temp;
chromosomes.push_back(temp);
}
cout << "SQUIRMY OUTPUT" << endl;
for (int x = 0; x < num; x++)
{
cout << "Case " << x + 1 << ": " << (squirmy(chromosomes[x]) ? "YES" : "NO" )<< endl;
}
cout << "END OF OUTPUT" << endl;
return 0;
}