My first blog post :) Any constructive feedback is welcome.
# | User | Rating |
---|---|---|
1 | Radewoosh | 3759 |
2 | orzdevinwang | 3697 |
3 | jiangly | 3662 |
4 | Benq | 3644 |
5 | -0.5 | 3545 |
6 | ecnerwala | 3505 |
7 | tourist | 3486 |
8 | inaFSTream | 3478 |
9 | maroonrk | 3454 |
10 | Rebelz | 3415 |
# | User | Contrib. |
---|---|---|
1 | adamant | 173 |
2 | awoo | 167 |
3 | SecondThread | 163 |
4 | BledDest | 162 |
4 | Um_nik | 162 |
6 | maroonrk | 161 |
6 | nor | 161 |
8 | -is-this-fft- | 150 |
9 | Geothermal | 146 |
10 | TheScrasse | 143 |
My first blog post :) Any constructive feedback is welcome.
Name |
---|
I think there is a O(N * M * 2N) solution for this problem. DP[i][j][p] = solution where we currently start at point (i, j) and the first i-bits of p belongs to the (j + 1)-column and the rest of the bits belongs to the j-column. And transitions are similar to the last solution. This utilizes the 2N different values of p and q more efficiently (since in the other solution, p cannot have zero bit before the last set bit, and q cannot have set bit after the row we currently stand in).
This is what I think is the actual idea behind broken profile dp.
can you provide a link to the iterative code for the same?
https://vjudge.net/problem/22385/origin
how to solve this
Thanks you very much
Is the blog still available? I have trouble with your link.
Sorry about that. Updated the link :)
Thanks:)
Auto comment: topic has been updated by evilbuggy (previous revision, new revision, compare).
Auto comment: topic has been updated by evilbuggy (previous revision, new revision, compare).
Auto comment: topic has been updated by evilbuggy (previous revision, new revision, compare).