返回介绍

solution / 2000-2099 / 2079.Watering Plants / README

发布于 2024-06-17 01:03:11 字数 4904 浏览 0 评论 0 收藏 0

2079. 给植物浇水

English Version

题目描述

你打算用一个水罐给花园里的 n 株植物浇水。植物排成一行,从左到右进行标记,编号从 0n - 1 。其中,第 i 株植物的位置是 x = ix = -1 处有一条河,你可以在那里重新灌满你的水罐。

每一株植物都需要浇特定量的水。你将会按下面描述的方式完成浇水:

  • 按从左到右的顺序给植物浇水。
  • 在给当前植物浇完水之后,如果你没有足够的水 完全 浇灌下一株植物,那么你就需要返回河边重新装满水罐。
  • 不能 提前重新灌满水罐。

最初,你在河边(也就是,x = -1),在 x 轴上每移动 一个单位 都需要 一步

给你一个下标从 0 开始的整数数组 plants ,数组由 n 个整数组成。其中,plants[i] 为第 i 株植物需要的水量。另有一个整数 capacity 表示水罐的容量,返回浇灌所有植物需要的 步数

 

示例 1:

输入:plants = [2,2,3,3], capacity = 5
输出:14
解释:从河边开始,此时水罐是装满的:
- 走到植物 0 (1 步) ,浇水。水罐中还有 3 单位的水。
- 走到植物 1 (1 步) ,浇水。水罐中还有 1 单位的水。
- 由于不能完全浇灌植物 2 ,回到河边取水 (2 步)。
- 走到植物 2 (3 步) ,浇水。水罐中还有 2 单位的水。
- 由于不能完全浇灌植物 3 ,回到河边取水 (3 步)。
- 走到植物 3 (4 步) ,浇水。
需要的步数是 = 1 + 1 + 2 + 3 + 3 + 4 = 14 。

示例 2:

输入:plants = [1,1,1,4,2,3], capacity = 4
输出:30
解释:从河边开始,此时水罐是装满的:
- 走到植物 0,1,2 (3 步) ,浇水。回到河边取水 (3 步)。
- 走到植物 3 (4 步) ,浇水。回到河边取水 (4 步)。
- 走到植物 4 (5 步) ,浇水。回到河边取水 (5 步)。
- 走到植物 5 (6 步) ,浇水。
需要的步数是 = 3 + 3 + 4 + 4 + 5 + 5 + 6 = 30 。

示例 3:

输入:plants = [7,7,7,7,7,7,7], capacity = 8
输出:49
解释:每次浇水都需要重新灌满水罐。
需要的步数是 = 1 + 1 + 2 + 2 + 3 + 3 + 4 + 4 + 5 + 5 + 6 + 6 + 7 = 49 。

 

提示:

  • n == plants.length
  • 1 <= n <= 1000
  • 1 <= plants[i] <= 106
  • max(plants[i]) <= capacity <= 109

解法

方法一

class Solution:
  def wateringPlants(self, plants: List[int], capacity: int) -> int:
    ans, cap = 0, capacity
    for i, x in enumerate(plants):
      if cap >= x:
        cap -= x
        ans += 1
      else:
        cap = capacity - x
        ans += i * 2 + 1
    return ans
class Solution {
  public int wateringPlants(int[] plants, int capacity) {
    int ans = 0, cap = capacity;
    for (int i = 0; i < plants.length; ++i) {
      if (cap >= plants[i]) {
        cap -= plants[i];
        ++ans;
      } else {
        ans += (i * 2 + 1);
        cap = capacity - plants[i];
      }
    }
    return ans;
  }
}
class Solution {
public:
  int wateringPlants(vector<int>& plants, int capacity) {
    int ans = 0, cap = capacity;
    for (int i = 0; i < plants.size(); ++i) {
      if (cap >= plants[i]) {
        cap -= plants[i];
        ++ans;
      } else {
        cap = capacity - plants[i];
        ans += i * 2 + 1;
      }
    }
    return ans;
  }
};
func wateringPlants(plants []int, capacity int) int {
  ans, cap := 0, capacity
  for i, x := range plants {
    if cap >= x {
      cap -= x
      ans++
    } else {
      cap = capacity - x
      ans += i*2 + 1
    }
  }
  return ans
}
function wateringPlants(plants: number[], capacity: number): number {
  const n = plants.length;
  let ans = 0;
  let water = capacity;
  for (let i = 0; i < n; i++) {
    if (water < plants[i]) {
      ans += i * 2 + 1;
      water = capacity - plants[i];
    } else {
      ans++;
      water -= plants[i];
    }
  }
  return ans;
}
impl Solution {
  pub fn watering_plants(plants: Vec<i32>, capacity: i32) -> i32 {
    let n = plants.len();
    let mut ans = 0;
    let mut water = capacity;
    for i in 0..n {
      if water < plants[i] {
        ans += 2 * i + 1;
        water = capacity - plants[i];
      } else {
        ans += 1;
        water -= plants[i];
      }
    }
    ans as i32
  }
}
int wateringPlants(int* plants, int plantsSize, int capacity) {
  int ans = 0;
  int water = capacity;
  for (int i = 0; i < plantsSize; i++) {
    if (water < plants[i]) {
      ans += i * 2 + 1;
      water = capacity - plants[i];
    } else {
      ans++;
      water -= plants[i];
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文