Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 732 Bytes

Question_2335.md

File metadata and controls

30 lines (24 loc) · 732 Bytes

LeetCode Records - Question 2335 Minimum Amount of Time to Fill Cups

Attempt 1: Fill the first and second maximum amount

class Solution {
    public int fillCups(int[] amount) {
        int count = 0;
        int lastIndex = amount.length - 1;
        int lastSecondIndex = lastIndex - 1;

        Arrays.sort(amount);
        while (amount[lastIndex] != 0) {
            if (amount[lastSecondIndex] >= 1 && amount[lastIndex] >= 1) {
                amount[lastSecondIndex]--;
            }

            amount[lastIndex]--;
            count++;

            Arrays.sort(amount);
        }

        return count;
    }
}
  • Runtime: 1 ms (Beats: 66.83%)
  • Memory: 40.99 MB (Beats: 74.20%)