/** * File: max_capacity.dart * Created Time: 2023-08-11 * Author: liuyuxin (gvenusleo@gmail.com) */ import 'dart:math'; /* Max capacity: Greedy algorithm */ int maxCapacity(List 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; } /* Driver Code */ void main() { List ht = [3, 8, 5, 2, 7, 7, 3, 4]; // Greedy algorithm int res = maxCapacity(ht); print("Maximum capacity is $res"); }