We can certainly devise divide and conquer for Maximum sum subarray, but while developing divide and conquer based algorithm for maximum product subarray, I found we might need to keep the maximum & absolute maximum for both parts (and crossing products), but it seems we can devise it. I was just curios why I don't see any divide and conquer based algorithm in discussions?
Is it because since we keep the max and global max are we going towards the DP?
Any idea will be appreciated. I just want to clarify my understanding for approach. Thanks.