_MASTER__'s blog

By _MASTER__, history, 15 months ago, In English

my submission: https://codeforces.com/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

  • Vote: I like it
  • +5
  • Vote: I do not like it

| Write comment?
»
15 months ago, # |
  Vote: I like it -8 Vote: I do not like it

This problem is very old (Beta round) so test cases are likely to be weak.

»
15 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

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)

  • »
    »
    15 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    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

    • »
      »
      »
      15 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      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.