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 | 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 | 167 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | atcoder_official | 160 |
5 | Um_nik | 159 |
6 | djm03178 | 156 |
7 | adamant | 153 |
8 | luogu_official | 151 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
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!!!