my submission: https://codeforces.me/contest/126/submission/190247628 //
as far as I can see, My solution is O(n²) when there is no solution and it got AC. and the string length is ~~ 1e6
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 160 |
5 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
my submission: https://codeforces.me/contest/126/submission/190247628 //
as far as I can see, My solution is O(n²) when there is no solution and it got AC. and the string length is ~~ 1e6
Name |
---|
This problem is very old (Beta round) so test cases are likely to be weak.
It's actually not $$$n^2$$$. The hashes are done in $$$O(1)$$$ so comparing each suffix with the prefix is $$$n \cdot O(1)$$$. Suppose $$$A$$$ is the shortest substring of $$$S$$$ such that $$$A$$$ is both a suffix and a prefix. Then $$$S = ATA$$$. Suppose $$$AB$$$ is the second shortest substring such that $$$AB$$$ is both a suffix and a prefix. Then $$$S = ABT^\prime AB$$$. This implies that $$$A$$$ was also an infix of $$$S$$$. So when we actually ran the algorithm, we should've stopped at just $$$A$$$.
What all this implies is that there can be at most one candidate prefix/suffix. If there is more than one, we know that the first candidate also appears somewhere inside of $$$S$$$ and we'd just print it. This makes the algorithm $$$O(n)$$$.
(Edit: simplified argument slightly)
But in the code I m not stopping at the shortest, the opposite, I m searching for the longest ones , starting from the prefix at string.length()-2
My bad for not noticing but the idea is the same. Here we could call the longest suffix/prefix $$$AB$$$ and the second longest $$$A$$$ and the rest of the argument is identical.