15.3 Max Capacity Problem¶
Question
Input an array \(ht\), where each element represents the height of a vertical partition. Any two partitions in the array, along with the space between them, can form a container.
The capacity of the container equals the product of height and width (area), where the height is determined by the shorter partition, and the width is the difference in array indices between the two partitions.
Please select two partitions in the array such that the capacity of the formed container is maximized, and return the maximum capacity. An example is shown in Figure 15-7.
Figure 15-7 Example data for the max capacity problem
The container is formed by any two partitions, therefore the state of this problem is the indices of two partitions, denoted as \([i, j]\).
According to the problem description, capacity equals height multiplied by width, where height is determined by the shorter partition, and width is the difference in array indices between the two partitions. Let the capacity be \(cap[i, j]\), then the calculation formula is:
Let the array length be \(n\), then the number of combinations of two partitions (total number of states) is \(C_n^2 = \frac{n(n - 1)}{2}\). Most directly, we can exhaustively enumerate all states to find the maximum capacity, with time complexity \(O(n^2)\).
1. Greedy Strategy Determination¶
This problem has a more efficient solution. As shown in Figure 15-8, select a state \([i, j]\) where index \(i < j\) and height \(ht[i] < ht[j]\), meaning \(i\) is the short partition and \(j\) is the long partition.
Figure 15-8 Initial state
As shown in Figure 15-9, if we now move the long partition \(j\) closer to the short partition \(i\), the capacity will definitely decrease.
This is because after moving the long partition \(j\), the width \(j-i\) definitely decreases; and since height is determined by the short partition, the height can only remain unchanged (\(i\) is still the short partition) or decrease (the moved \(j\) becomes the short partition).
Figure 15-9 State after moving the long partition inward
Conversely, we can only possibly increase capacity by contracting the short partition \(i\) inward. Because although width will definitely decrease, height may increase (the moved short partition \(i\) may become taller). For example, in Figure 15-10, the area increases after moving the short partition.
Figure 15-10 State after moving the short partition inward
From this we can derive the greedy strategy for this problem: initialize two pointers at both ends of the container, and in each round contract the pointer corresponding to the short partition inward, until the two pointers meet.
Figure 15-11 shows the execution process of the greedy strategy.
- In the initial state, pointers \(i\) and \(j\) are at both ends of the array.
- Calculate the capacity of the current state \(cap[i, j]\), and update the maximum capacity.
- Compare the heights of partition \(i\) and partition \(j\), and move the short partition inward by one position.
- Loop through steps
2.and3.until \(i\) and \(j\) meet.
Figure 15-11 Greedy process for the max capacity problem
2. Code Implementation¶
The code loops at most \(n\) rounds, therefore the time complexity is \(O(n)\).
Variables \(i\), \(j\), and \(res\) use a constant amount of extra space, therefore the space complexity is \(O(1)\).
def max_capacity(ht: list[int]) -> int:
"""Max capacity: Greedy algorithm"""
# Initialize i, j to be at both ends of the array
i, j = 0, len(ht) - 1
# Initial max capacity is 0
res = 0
# Loop for greedy selection until the two boards meet
while i < j:
# Update max capacity
cap = min(ht[i], ht[j]) * (j - i)
res = max(res, cap)
# Move the shorter board inward
if ht[i] < ht[j]:
i += 1
else:
j -= 1
return res
/* Max capacity: Greedy algorithm */
int maxCapacity(vector<int> &ht) {
// Initialize i, j to be at both ends of the array
int i = 0, j = ht.size() - 1;
// Initial max capacity is 0
int res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
int cap = min(ht[i], ht[j]) * (j - i);
res = max(res, cap);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i++;
} else {
j--;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
int maxCapacity(int[] ht) {
// Initialize i, j to be at both ends of the array
int i = 0, j = ht.length - 1;
// Initial max capacity is 0
int res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
int cap = Math.min(ht[i], ht[j]) * (j - i);
res = Math.max(res, cap);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i++;
} else {
j--;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
int MaxCapacity(int[] ht) {
// Initialize i, j to be at both ends of the array
int i = 0, j = ht.Length - 1;
// Initial max capacity is 0
int res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
int cap = Math.Min(ht[i], ht[j]) * (j - i);
res = Math.Max(res, cap);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i++;
} else {
j--;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
func maxCapacity(ht []int) int {
// Initialize i, j to be at both ends of the array
i, j := 0, len(ht)-1
// Initial max capacity is 0
res := 0
// Loop for greedy selection until the two boards meet
for i < j {
// Update max capacity
capacity := int(math.Min(float64(ht[i]), float64(ht[j]))) * (j - i)
res = int(math.Max(float64(res), float64(capacity)))
// Move the shorter board inward
if ht[i] < ht[j] {
i++
} else {
j--
}
}
return res
}
/* Max capacity: Greedy algorithm */
func maxCapacity(ht: [Int]) -> Int {
// Initialize i, j to be at both ends of the array
var i = ht.startIndex, j = ht.endIndex - 1
// Initial max capacity is 0
var res = 0
// Loop for greedy selection until the two boards meet
while i < j {
// Update max capacity
let cap = min(ht[i], ht[j]) * (j - i)
res = max(res, cap)
// Move the shorter board inward
if ht[i] < ht[j] {
i += 1
} else {
j -= 1
}
}
return res
}
/* Max capacity: Greedy algorithm */
function maxCapacity(ht) {
// Initialize i, j to be at both ends of the array
let i = 0,
j = ht.length - 1;
// Initial max capacity is 0
let res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
const cap = Math.min(ht[i], ht[j]) * (j - i);
res = Math.max(res, cap);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i += 1;
} else {
j -= 1;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
function maxCapacity(ht: number[]): number {
// Initialize i, j to be at both ends of the array
let i = 0,
j = ht.length - 1;
// Initial max capacity is 0
let res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
const cap: number = Math.min(ht[i], ht[j]) * (j - i);
res = Math.max(res, cap);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i += 1;
} else {
j -= 1;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
int maxCapacity(List<int> ht) {
// Initialize i, j to be at both ends of the array
int i = 0, j = ht.length - 1;
// Initial max capacity is 0
int res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
int cap = min(ht[i], ht[j]) * (j - i);
res = max(res, cap);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i++;
} else {
j--;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
fn max_capacity(ht: &[i32]) -> i32 {
// Initialize i, j to be at both ends of the array
let mut i = 0;
let mut j = ht.len() - 1;
// Initial max capacity is 0
let mut res = 0;
// Loop for greedy selection until the two boards meet
while i < j {
// Update max capacity
let cap = std::cmp::min(ht[i], ht[j]) * (j - i) as i32;
res = std::cmp::max(res, cap);
// Move the shorter board inward
if ht[i] < ht[j] {
i += 1;
} else {
j -= 1;
}
}
res
}
/* Max capacity: Greedy algorithm */
int maxCapacity(int ht[], int htLength) {
// Initialize i, j to be at both ends of the array
int i = 0;
int j = htLength - 1;
// Initial max capacity is 0
int res = 0;
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
int capacity = myMin(ht[i], ht[j]) * (j - i);
res = myMax(res, capacity);
// Move the shorter board inward
if (ht[i] < ht[j]) {
i++;
} else {
j--;
}
}
return res;
}
/* Max capacity: Greedy algorithm */
fun maxCapacity(ht: IntArray): Int {
// Initialize i, j to be at both ends of the array
var i = 0
var j = ht.size - 1
// Initial max capacity is 0
var res = 0
// Loop for greedy selection until the two boards meet
while (i < j) {
// Update max capacity
val cap = min(ht[i], ht[j]) * (j - i)
res = max(res, cap)
// Move the shorter board inward
if (ht[i] < ht[j]) {
i++
} else {
j--
}
}
return res
}
### Maximum capacity: greedy ###
def max_capacity(ht)
# Initialize i, j to be at both ends of the array
i, j = 0, ht.length - 1
# Initial max capacity is 0
res = 0
# Loop for greedy selection until the two boards meet
while i < j
# Update max capacity
cap = [ht[i], ht[j]].min * (j - i)
res = [res, cap].max
# Move the shorter board inward
if ht[i] < ht[j]
i += 1
else
j -= 1
end
end
res
end
3. Correctness Proof¶
The reason greedy is faster than exhaustive enumeration is that each round of greedy selection "skips" some states.
For example, in state \(cap[i, j]\) where \(i\) is the short partition and \(j\) is the long partition, if we greedily move the short partition \(i\) inward by one position, the states shown in Figure 15-12 will be "skipped". This means that the capacities of these states cannot be verified later.
Figure 15-12 States skipped by moving the short partition
Observing carefully, these skipped states are actually all the states obtained by moving the long partition \(j\) inward. We have already proven that moving the long partition inward will definitely decrease capacity. That is, the skipped states cannot possibly be the optimal solution, skipping them will not cause us to miss the optimal solution.
The above analysis shows that the operation of moving the short partition is "safe", and the greedy strategy is effective.













