-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathStringoholics.cpp
177 lines (138 loc) · 3.91 KB
/
Stringoholics.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
/*
You are given an array A consisting of strings made up of the letters ‘a’ and ‘b’ only.
Each string goes through a number of operations, where:
<ul>
<li>At time 1, you circularly rotate each string by 1 letter.</li>
<li>At time 2, you circularly rotate the new rotated strings by 2 letters.</li>
<li>At time 3, you circularly rotate the new rotated strings by 3 letters.</li>
<li>At time i, you circularly rotate the new rotated strings by i % length(string) letters.</li>
</ul>
Eg: String is abaa
<ul>
<li>At time 1, string is baaa, as 1 letter is circularly rotated to the back</li>
<li>At time 2, string is aaba, as 2 letters of the string baaa is circularly rotated to the back</li>
<li>At time 3, string is aaab, as 3 letters of the string aaba is circularly rotated to the back</li>
<li>At time 4, string is again aaab, as 4 letters of the string aaab is circularly rotated to the back</li>
<li>At time 5, string is aaba, as 1 letters of the string aaab is circularly rotated to the back</li>
</ul>
After some units of time, a string becomes equal to it’s original self.
Once a string becomes equal to itself, it’s letters start to rotate from the first letter again (process resets). So, if a string takes t time to get back to the original, at time t+1 one letter will be rotated and the string will be it’s original self at 2t time.
You have to find the minimum time, where maximum number of strings are equal to their original self.
As this time can be very large, give the answer modulo 109+7.
Note: Your solution will run on multiple test cases so do clear global variables after using them.
Input:
A: Array of strings.
Output:
Minimum time, where maximum number of strings are equal to their original self.
Constraints:
1 <= size(A) <= 10^5
1 <= size of each string in A <= 10^5
Each string consists of only characters 'a' and 'b'
Summation of length of all strings <= 10^7
Example:
Input
A: [a,ababa,aba]
Output
4
String 'a' is it's original self at time 1, 2, 3 and 4.
String 'ababa' is it's original self only at time 4. (ababa => babaa => baaba => babaa => ababa)
String 'aba' is it's original self at time 2 and 4. (aba => baa => aba)
Hence, 3 strings are their original self at time 4.
LINK: https://www.interviewbit.com/problems/stringoholics/
*/
typedef long long int ll;
#define MOD 1000000007
ll powe(ll a, ll b, ll p=MOD)
{
ll res = 1;
a = a%p;
while(b)
{
if(b&1)
res = (res*a)%p;
b = b>>1;
a = (a*a)%p;
}
return res;
}
ll computeLPS(string s)
{
int n = s.length();
ll lps[n];
lps[0] = 0;
int i = 1, len = 0;
while(i<n)
{
if(s[i] == s[len])
{
len++;
lps[i] = len;
i++;
}
else
{
if(len == 0)
{
lps[i] = 0;
i++;
}
else
len = lps[len-1];
}
}
return lps[n-1];
}
ll calc(string s)
{
ll n = s.length();
ll x = computeLPS(s);
if(n%(n-x) == 0)
n -= x;
ll i=1, sum = 1;
while(1)
{
if(sum%n == 0)
break;
i++;
sum += i;
}
return i;
}
ll findLCM(vector<ll> &v)
{
int n = v.size();
unordered_map<ll, ll> mp;
for(int i=0;i<n;i++)
{
ll num = v[i];
for(int j=2;j<=num;j++)
{
ll cnt = 0;
while(num%j == 0)
{
cnt++;
num /= j;
}
if(cnt == 0)
continue;
mp[j] = max(mp[j], cnt);
}
}
ll val = 1;
for(auto x : mp)
{
ll a = x.first;
ll b = x.second;
val = (val * powe(a,b))%MOD;
}
return val;
}
int Solution::solve(vector<string> &A)
{
ll n = A.size();
vector<ll> v;
for(int i=0;i<n;i++)
v.push_back(calc(A[i]));
ll ans = findLCM(v);
return ans;
}