-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path9_Question.cpp
More file actions
113 lines (68 loc) · 2.54 KB
/
9_Question.cpp
File metadata and controls
113 lines (68 loc) · 2.54 KB
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
// A furnishing company is manufacturing a new collection of curtains. The curtains are of two colors aqua(a) and black (b).
// The curtains color is represented as a string(str) consisting of a’s and b’s of length N. Then, they are packed (substring)
// into L number of curtains in each box. The box with the maximum number of ‘aqua’ (a) color curtains is labeled.
// The task here is to find the number of ‘aqua’ color curtains in the labeled box.
// Note :
// If ‘L’ is not a multiple of N, the remaining number of curtains should be considered as a substring too.
// In simple words, after dividing the curtains in sets of ‘L’, any curtains left will be another set(refer example 1)
// Example 1:
// Input :
// bbbaaababa -> Value of str
// 3 -> Value of L
// Output: 3 -> Maximum number of a’s
// Explanation:
// From the input given above.
// Dividing the string into sets of 3 characters each
// Set 1: {b,b,b}
// Set 2: {a,a,a}
// Set 3: {b,a,b}
// Set 4: {a} -> leftover characters also as taken as another set
// Among all the sets, Set 2 has more number of a’s. The number of a’s in set 2 is 3.
// Hence, the output is 3.
// Example 2:
// Input :
// abbbaabbb -> Value of str
// 5 -> Value of L
// Output: 2 -> Maximum number of a’s
// Explanation:
// From the input given above,
// Dividing the string into sets of 5 characters each.
// Set 1: {a,b,b,b,b}
// Set 2: {a,a,b,b,b}
// Among both the sets, set 2 has more number of a’s. The number of a’s in set 2 is 2.
// Hence, the output is 2.
// Constraints:
// 1<=L<=10
// 1<=N<=50
// The input format for testing
// The candidate has to write the code to accept two inputs separated by a new line.
// First input- Accept string that contains character a and b only
// Second input- Accept value for N(Positive integer number)
// The output format for testing
// The output should be a positive integer number of print the message(if any) given in the problem statement.
// (Check the output in Example 1, Example 2).
#include<bits/stdc++.h>
using namespace std;
int Find(string S, int L){
int n = S.size();
int max_count = 0;
int curr_count = 0;
for(int i=0; i<n; i++){
if(i % L == 0){
max_count = max(curr_count,max_count);
curr_count = 0;
}
if(S[i] == 'a'){
curr_count++;
}
}
return max_count = max(curr_count,max_count);
}
int main(){
string str;
cin>>str;
int L;
cin>>L;
cout<<Find(str,L);
return 0;
}