I have wrote an O(n^2) solution for this problem
http://www.spoj.com/problems/STRSOCU/
here is my code
What could be a better Solution for it?
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 159 |
5 | atcoder_official | 156 |
6 | djm03178 | 153 |
6 | adamant | 153 |
8 | luogu_official | 149 |
9 | awoo | 147 |
10 | TheScrasse | 146 |
I have wrote an O(n^2) solution for this problem
http://www.spoj.com/problems/STRSOCU/
here is my code
What could be a better Solution for it?
Name |
---|
I tried to optimize it a little bit and write it in C++ but it also gives TLE http://ideone.com/fb4hv5 I do not concatenate n times but i give the Z-function a number k to start matching from the character at index k It works correctly and the Z-values are correct but the time is too much
This is the latest thing I did
I think I can't optimize more in an O(n^2) code
http://ideone.com/9OzGGX
O(n) solution with suffix automaton: 2bc3OA
Thank you so much. I haven't heard about this data structure before. Time to learn a new data structure. If you have some links that will make me understand it faster provide me with it please.
http://e-maxx.ru/algo/suffix_automata
but it's Russian :(