Welcome to Subscribe On Youtube
Formatted question description: https://leetcode.ca/all/2136.html
2136. Earliest Possible Day of Full Bloom
- Difficulty: Hard.
- Related Topics: Array, Greedy, Sorting.
- Similar Questions: Minimum Number of Days to Make m Bouquets.
Problem
You have n
flower seeds. Every seed must be planted first before it can begin to grow, then bloom. Planting a seed takes time and so does the growth of a seed. You are given two 0-indexed integer arrays plantTime
and growTime
, of length n
each:
-
plantTime[i]
is the number of full days it takes you to plant theith
seed. Every day, you can work on planting exactly one seed. You do not have to work on planting the same seed on consecutive days, but the planting of a seed is not complete until you have workedplantTime[i]
days on planting it in total. -
growTime[i]
is the number of full days it takes theith
seed to grow after being completely planted. After the last day of its growth, the flower blooms and stays bloomed forever.
From the beginning of day 0
, you can plant the seeds in any order.
Return the **earliest possible day where all seeds are blooming**.
Example 1:
Input: plantTime = [1,4,3], growTime = [2,3,1]
Output: 9
Explanation: The grayed out pots represent planting days, colored pots represent growing days, and the flower represents the day it blooms.
One optimal way is:
On day 0, plant the 0th seed. The seed grows for 2 full days and blooms on day 3.
On days 1, 2, 3, and 4, plant the 1st seed. The seed grows for 3 full days and blooms on day 8.
On days 5, 6, and 7, plant the 2nd seed. The seed grows for 1 full day and blooms on day 9.
Thus, on day 9, all the seeds are blooming.
Example 2:
Input: plantTime = [1,2,3,2], growTime = [2,1,2,1]
Output: 9
Explanation: The grayed out pots represent planting days, colored pots represent growing days, and the flower represents the day it blooms.
One optimal way is:
On day 1, plant the 0th seed. The seed grows for 2 full days and blooms on day 4.
On days 0 and 3, plant the 1st seed. The seed grows for 1 full day and blooms on day 5.
On days 2, 4, and 5, plant the 2nd seed. The seed grows for 2 full days and blooms on day 8.
On days 6 and 7, plant the 3rd seed. The seed grows for 1 full day and blooms on day 9.
Thus, on day 9, all the seeds are blooming.
Example 3:
Input: plantTime = [1], growTime = [1]
Output: 2
Explanation: On day 0, plant the 0th seed. The seed grows for 1 full day and blooms on day 2.
Thus, on day 2, all the seeds are blooming.
Constraints:
-
n == plantTime.length == growTime.length
-
1 <= n <= 105
-
1 <= plantTime[i], growTime[i] <= 104
Solution
-
class Solution { public int earliestFullBloom(int[] plantTime, int[] growTime) { int n = plantTime.length; if (n == 1) { return plantTime[0] + growTime[0]; } Seed[] arr = new Seed[n]; for (int i = 0; i < n; i++) { arr[i] = new Seed(plantTime[i], growTime[i]); } Arrays.sort(arr, Collections.reverseOrder()); int ans = arr[0].plantTime + arr[0].growTime; int lastPlantDay = arr[0].plantTime; for (int i = 1; i < n; i++) { int currBloomDay = lastPlantDay + arr[i].plantTime + arr[i].growTime; ans = Math.max(ans, currBloomDay); lastPlantDay += arr[i].plantTime; } return ans; } static class Seed implements Comparable<Seed> { int plantTime; int growTime; Seed(int plantTime, int growTime) { this.plantTime = plantTime; this.growTime = growTime; } public int compareTo(Seed s) { return this.growTime - s.growTime; } } }
-
class Solution: def earliestFullBloom(self, plantTime: List[int], growTime: List[int]) -> int: ans = t = 0 for a, b in sorted(zip(plantTime, growTime), key=lambda x: -x[1]): t += a ans = max(ans, t + b) return ans ############ # 2136. Earliest Possible Day of Full Bloom # https://leetcode.com/problems/earliest-possible-day-of-full-bloom/ class Solution: def earliestFullBloom(self, plantTime: List[int], growTime: List[int]) -> int: A = [(x, y) for x, y in zip(plantTime, growTime)] A.sort(key = lambda x:-x[1]) days = 0 res = 0 for plant, grow in A: days += plant res = max(res, days + grow) return res
-
class Solution { public: int earliestFullBloom(vector<int>& plantTime, vector<int>& growTime) { int n = plantTime.size(); vector<pair<int, int>> arr; for (int i = 0; i < n; ++i) arr.push_back({-growTime[i], plantTime[i]}); sort(arr.begin(), arr.end()); int ans = 0, t = 0; for (auto [a, b] : arr) { t += b; ans = max(ans, t - a); } return ans; } };
-
func earliestFullBloom(plantTime []int, growTime []int) int { arr := [][]int{} for i, a := range plantTime { arr = append(arr, []int{a, growTime[i]}) } sort.Slice(arr, func(i, j int) bool { return arr[i][1] > arr[j][1] }) ans, t := 0, 0 for _, e := range arr { t += e[0] ans = max(ans, t+e[1]) } return ans } func max(a, b int) int { if a > b { return a } return b }
-
function earliestFullBloom(plantTime: number[], growTime: number[]): number { const n = plantTime.length; const idx: number[] = Array.from({ length: n }, (_, i) => i); idx.sort((i, j) => growTime[j] - growTime[i]); let [ans, t] = [0, 0]; for (const i of idx) { t += plantTime[i]; ans = Math.max(ans, t + growTime[i]); } return ans; }
-
impl Solution { pub fn earliest_full_bloom(plant_time: Vec<i32>, grow_time: Vec<i32>) -> i32 { let mut idx: Vec<usize> = (0..plant_time.len()).collect(); idx.sort_by_key(|&i| -&grow_time[i]); let mut ans = 0; let mut t = 0; for &i in &idx { t += plant_time[i]; ans = ans.max(t + grow_time[i]); } ans } }
Explain:
nope.
Complexity:
- Time complexity : O(n).
- Space complexity : O(n).