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?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 160 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | Dominater069 | 154 |
8 | awoo | 154 |
10 | luogu_official | 150 |
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?
Название |
---|
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 :(