-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathType it!.cpp
62 lines (39 loc) · 878 Bytes
/
Type it!.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
//{ Driver Code Starts
// Initial template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function template for C++
class Solution {
public:
int minOperation(string s) {
int mx=0,ans=0,n= s.size();
if(n<=2) return n;
for(int i=2;i<n;i++)
{
int tind=0,cnt=0,ii=i;
while(s[tind] == s[ii] && tind<i && ii<n)
{
cnt++;
ii++;
tind++;
}
mx= max(mx, cnt );
}
if(mx==0) return n;
return n-mx+1;
}
};
//{ Driver Code Starts.
int main() {
int t;
cin >> t;
while (t--) {
string s;
cin >> s;
Solution ob;
cout << ob.minOperation(s) << "\n";
}
return 0;
}
// } Driver Code Ends