Can anyone please tell me the process how to solve this problem . Thanx in advance :)
# | User | Rating |
---|---|---|
1 | Benq | 3783 |
2 | jiangly | 3772 |
3 | tourist | 3706 |
4 | maroonrk | 3609 |
5 | Um_nik | 3591 |
6 | fantasy | 3526 |
7 | ko_osaga | 3500 |
8 | inaFSTream | 3477 |
9 | cnnfls_csy | 3427 |
10 | zh0ukangyang | 3423 |
# | User | Contrib. |
---|---|---|
1 | Um_nik | 183 |
2 | awoo | 180 |
3 | nor | 172 |
4 | -is-this-fft- | 171 |
5 | adamant | 170 |
6 | maroonrk | 165 |
7 | antontrygubO_o | 161 |
8 | SecondThread | 159 |
9 | dario2994 | 152 |
9 | kostka | 152 |
Can anyone please tell me the process how to solve this problem . Thanx in advance :)
Name |
---|
Solved the problem after seeing this post.
lets take
dp[flip_allowed][flipped][i][j][k]
=minimum number of flip needed to match x[i....j] with Y[k ..... k+j-i], 'filp_allowed' and 'flipped' are boolean values that denotes whether we are allowed to flip the current segment X[i....j] and whether the portion x[i....j] is flipped respectively. now to match x[....] to y[...], we can either flip the entire segment x[....] , or we will at least leave one character from any end of x[i....j] if that matches Y[k ........ k+j-i].So the state transitions will look like this
Hope that helps.
shopnobaj_raju Thanx a lot vaiya :)