-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLongest Duplicate Substring
77 lines (64 loc) · 1.94 KB
/
Longest Duplicate Substring
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
#define p 10000007 // to avoid overflow using this in modular operation
#define pb push_back
vector<int> roll;
class Solution {
bool match(string s, int len, int size, string& ans)
{
//stores key->hasvalue and starting positin of the string
unordered_map<int,vector<int>> m;
int hash = 0; //curr window hash
for(int i=0;i<size;i++)
hash = (hash*26 + (s[i]-'a'))%p;
m[hash].pb(0);
for(int j = size; j<len;j++)
{
hash = ((hash-roll[size-1]*(s[j-size]-'a'))%p + p)%p;
hash = (hash*26+(s[j]-'a'))%p;
if(m.find(hash)!=m.end())
{
for(auto st : m[hash])
{
string temp = s.substr(st,size);
string curr = s.substr(j-size+1,size);
if(temp.compare(curr) == 0)
{
ans = temp;
return true;
}
}
}
m[hash].pb(j-size+1);
}
return false;
}
public:
string longestDupSubstring(string S)
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int len = S.size();
if(len == 0) return "";
roll.resize(len);
roll[0] = 1;
for(int i=1;i<len;i++)
roll[i] = (26*roll[i-1])%p;
int low=1,mid, high = len;
string ans = "", temp;
//Binary Search
while(low<=high)
{
temp = "";
mid=low+(high-low)/2;
bool flag = match(S, len, mid, temp);
if(flag)
{
if(temp.size()>ans.size())
ans = temp;
low=mid+1;
}
else
high = mid-1;
}
return ans;
}
};