Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    3494 - Find the Minimum Amount of Time to Brew Potions.

    Medium

    You are given two integer arrays, skill and mana, of length n and m, respectively.

    In a laboratory, n wizards must brew m potions in order. Each potion has a mana capacity mana[j] and must pass through all the wizards sequentially to be brewed properly. The time taken by the <code>i<sup>th</sup></code> wizard on the <code>j<sup>th</sup></code> potion is <code>time<sub>ij</sub> = skilli * manaj</code>.

    Since the brewing process is delicate, a potion must be passed to the next wizard immediately after the current wizard completes their work. This means the timing must be synchronized so that each wizard begins working on a potion exactly when it arrives.

    Return the minimum amount of time required for the potions to be brewed properly.

    Example 1:

    Input: skill = 1,5,2,4, mana = 5,1,4,2

    Output: 110

    Explanation:

    As an example for why wizard 0 cannot start working on the 1<sup>st</sup> potion before time t = 52, consider the case where the wizards started preparing the 1<sup>st</sup> potion at time t = 50. At time t = 58, wizard 2 is done with the 1<sup>st</sup> potion, but wizard 3 will still be working on the 0<sup>th</sup> potion till time t = 60.

    Example 2:

    Input: skill = 1,1,1, mana = 1,1,1

    Output: 5

    Explanation:

    • Preparation of the 0<sup>th</sup> potion begins at time t = 0, and is completed by time t = 3.

    • Preparation of the 1<sup>st</sup> potion begins at time t = 1, and is completed by time t = 4.

    • Preparation of the 2<sup>nd</sup> potion begins at time t = 2, and is completed by time t = 5.

    Example 3:

    Input: skill = 1,2,3,4, mana = 1,2

    Output: 21

    Constraints:

    • n == skill.length

    • m == mana.length

    • 1 &lt;= n, m &lt;= 5000

    • 1 &lt;= mana[i], skill[i] &lt;= 5000

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Long minTime(IntArray skill, IntArray mana)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait