Alice and Bob want to water n plants in their garden. The plants are arranged in a row and are labeled from 0 to n - 1 from left to right where the ith plant is located at x = i.
Each plant needs a specific amount of water. Alice and Bob have a watering can each, initially full. They water the plants in the following way:
Alice waters the plants in order from left to right , starting from the 0th plant. Bob waters the plants in order from right to left , starting from the (n - 1)th plant. They begin watering the plants simultaneously.
It takes the same amount of time to water each plant regardless of how much water it needs.
Alice/Bob must water the plant if they have enough in their can to fully water it. Otherwise, they first refill their can (instantaneously) then water the plant.
In case both Alice and Bob reach the same plant, the one with more water currently in his/her watering can should water this plant. If they have the same amount of water, then Alice should water this plant.
Given a 0-indexed integer array plants of n integers, where
plants[i] is the amount of water the ith plant needs, and two integers
capacityA and capacityB representing the capacities of Alice’s and Bob’s watering cans respectively, return thenumber of times they have to refill to water all the plants.
Input: plants =[2,2,3,3], capacityA =5, capacityB =5Output: 1Explanation:
- Initially, Alice and Bob have 5 units of water each in their watering cans.- Alice waters plant 0, Bob waters plant 3.- Alice and Bob now have 3 units and 2 units of water respectively.- Alice has enough water for plant 1, so she waters it. Bob does not have enough water for plant 2, so he refills his can then waters it.So, the total number of times they have to refill to water all the plants is0+0+1+0=1.
Input: plants =[2,2,3,3], capacityA =3, capacityB =4Output: 2Explanation:
- Initially, Alice and Bob have 3 units and 4 units of water in their watering cans respectively.- Alice waters plant 0, Bob waters plant 3.- Alice and Bob now have 1 unit of water each, and need to water plants 1 and 2 respectively.- Since neither of them have enough water for their current plants, they refill their cans and then water the plants.So, the total number of times they have to refill to water all the plants is0+1+1+0=2.
Input: plants =[5], capacityA =10, capacityB =8Output: 0Explanation:
- There is only one plant.- Alice's watering can has 10 units of water, whereas Bob's can has 8 units. Since Alice has more water in her can, she waters this plant.So, the total number of times they have to refill is0.
Use two pointers: one for Alice (left to right), one for Bob (right to left). Simulate the process, refilling as needed. If both meet at the same plant, the one with more water waters it (Alice if equal).
from typing import List
classSolution:
defminimumRefill(self, plants: List[int], capacityA: int, capacityB: int) -> int:
i, j =0, len(plants) -1 a, b = capacityA, capacityB
refills =0while i < j:
if a < plants[i]:
refills +=1 a = capacityA
a -= plants[i]
if b < plants[j]:
refills +=1 b = capacityB
b -= plants[j]
i +=1 j -=1if i == j:
if max(a, b) < plants[i]:
refills +=1return refills
classSolution {
publicintminimumRefill(int[] plants, int capacityA, int capacityB) {
int i = 0, j = plants.length- 1;
int a = capacityA, b = capacityB, refills = 0;
while (i < j) {
if (a < plants[i]) {
refills++;
a = capacityA;
}
a -= plants[i++];
if (b < plants[j]) {
refills++;
b = capacityB;
}
b -= plants[j--];
}
if (i == j) {
if (Math.max(a, b) < plants[i]) refills++;
}
return refills;
}
}
#include<vector>usingnamespace std;
classSolution {
public:int minimumRefill(vector<int>& plants, int capacityA, int capacityB) {
int i =0, j = plants.size() -1, a = capacityA, b = capacityB, refills =0;
while (i < j) {
if (a < plants[i]) {
refills++;
a = capacityA;
}
a -= plants[i++];
if (b < plants[j]) {
refills++;
b = capacityB;
}
b -= plants[j--];
}
if (i == j) {
if (max(a, b) < plants[i]) refills++;
}
return refills;
}
};
classSolution {
funminimumRefill(plants: IntArray, capacityA: Int, capacityB: Int): Int {
var i = 0var j = plants.size - 1var a = capacityA
var b = capacityB
var refills = 0while (i < j) {
if (a < plants[i]) {
refills++ a = capacityA
}
a -= plants[i++]
if (b < plants[j]) {
refills++ b = capacityB
}
b -= plants[j--]
}
if (i == j && maxOf(a, b) < plants[i]) refills++return refills
}
}
impl Solution {
pubfnminimum_refill(plants: Vec<i32>, capacity_a: i32, capacity_b: i32) -> i32 {
let (mut i, mut j) = (0, plants.len() asi32-1);
let (mut a, mut b) = (capacity_a, capacity_b);
letmut refills =0;
while i < j {
if a < plants[i asusize] {
refills +=1;
a = capacity_a;
}
a -= plants[i asusize];
if b < plants[j asusize] {
refills +=1;
b = capacity_b;
}
b -= plants[j asusize];
i +=1;
j -=1;
}
if i == j && a.max(b) < plants[i asusize] {
refills +=1;
}
refills
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
functionminimumRefill(plants: number[], capacityA: number, capacityB: number):number {
leti=0, j=plants.length-1;
leta=capacityA, b=capacityB, refills=0;
while (i<j) {
if (a<plants[i]) {
refills++;
a=capacityA;
}
a-=plants[i++];
if (b<plants[j]) {
refills++;
b=capacityB;
}
b-=plants[j--];
}
if (i===j&& Math.max(a, b) <plants[i]) refills++;
returnrefills;
}