fork download
  1. #include <iostream>
  2. //#include <vector>
  3. using namespace std;
  4.  
  5. // Function to return the maximum water that can be stored
  6. int maxWater(int arr[]) {
  7. int res = 0;
  8. int n=sizeof(arr)/sizeof(arr[0]);
  9. for (int i = 1; i <n-1; i++) {
  10.  
  11. // Find the maximum element on its left
  12. int left = arr[i];
  13. for (int j = 0; j < i; j++)
  14. left = max(left, arr[j]);
  15.  
  16. // Find the maximum element on its right
  17. int right = arr[i];
  18. for (int j = i + 1; j <n; j++)
  19. right = max(right, arr[j]);
  20.  
  21. // Update the maximum water
  22. res += (min(left, right) - arr[i]);
  23. }
  24.  
  25. return res;
  26. }
  27.  
  28. int main() {
  29. int arr[] = { 2, 1, 5, 3, 1, 0, 4 };
  30. int r= maxWater(arr);
  31. cout<<r;
  32. return 0;
  33. }
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty