In this problem http://www.spoj.com/problems/PLD/ , what is the best way to use rabin_karp?
To precalculate hashes,or add-delete numbers? Cause I am stuck at this 4 hours now... :(
# | 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 | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 156 |
6 | Qingyu | 154 |
7 | djm03178 | 151 |
7 | adamant | 151 |
9 | luogu_official | 150 |
10 | awoo | 147 |
In this problem http://www.spoj.com/problems/PLD/ , what is the best way to use rabin_karp?
To precalculate hashes,or add-delete numbers? Cause I am stuck at this 4 hours now... :(
Name |
---|
Substring [l..r] is a palindrome when it equals to its reversed version. So you can precalc hashes for s and for reversed s. Then you may check for all k-substrings if they are equal to its reversed versions.
The time to hash a substring,is the same with pass it with a for loop right? So instead precalculate all hashes,why not to check with naive way??
Except if I calculate the hash via adding and deleting new and last character. I know How to do that in normal string,but in reversing string,I need to delete in reversing mode of rabin-karp.
For example if I have "asd" as string,rabin karp says:
(a*BASE + s)*BASE + d, and when I delete I says -=a*BASE^2.
but in reversing string,I need to delete from the other side,so I should say: -d,and after /=BASE. That gives me strange numbers....
I cant get it!!!
The time to hash a substring,is the same with pass it with a for loop right?
There is a way to calculate polynomial hash of substring in O(1) with O(n) precalc. It's like prefix-sums.
Ok,I figured out !!! Thanks for the time!!!