#Is there any other transition out there that can be optimised using DnC optimization
6 messages · Page 1 of 1 (latest)
Currently i'm learning about DnC optimization for dynamic programming
and i have found in many Source that the transition needs to be in this form
dp[i][j] = min1≤k<j (dp[i-1][k-1] + cost[k][j])
does it have to be in that form for the problem to be optimized by DnC
or Do i only have to check the cost function for quadrangle inequality