当前位置:   article > 正文

力扣每日一题- 给植物浇水 II -2024.5.9

力扣每日一题- 给植物浇水 II -2024.5.9

    力扣题目:给植物浇水 II

题目链接: 2105.给植物浇水 II

题目描述

在这里插入图片描述

代码思路

根据题目内容,使用双指针从左右两边同时向中间移动,模拟浇水过程即可。

代码纯享版

class Solution {
    public int minimumRefill(int[] plants, int capacityA, int capacityB) {
        int left = 0, right = plants.length - 1;
        int left_water = capacityA, right_water = capacityB;
        int sum = 0;
        while(left <= right){
            if(left < right){
                if(left_water < plants[left]){
                    sum++;
                    left_water = capacityA - plants[left];
                }
                else left_water -= plants[left];

                if(right_water < plants[right]){
                    sum++;
                    right_water = capacityB - plants[right];
                }
                else right_water -= plants[right];
            }
            else{
                if(Math.max(left_water, right_water) < plants[left]) sum++;
            }
            left++;
            right--;
        }
        return sum;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/582107
推荐阅读
相关标签
  

闽ICP备14008679号