Are these two problems isomorphic to each other? — (1) Finding the position in an array that splits it into two partitions minimizing the maximum of the sum between the two partitions. (2) Finding the position in an array that splits it into two partitions minimizing the absolute value difference of the sums of the two partitions.
It intuitively seems that both these problems essentially want the sums of the two partitions to be as close to each other as possible.
However, the former seems to have a O(lg N) solution through binary search while the latter is the NP-Complete partition problem, only having a pseudo-polynomial time dynamic programming algorithm.
Is there a case where the partition point for these two problems would not be the same?