LeetCode in Kotlin

1798. Maximum Number of Consecutive Values You Can Make

Medium

You are given an integer array coins of length n which represents the n coins that you own. The value of the ith coin is coins[i]. You can make some value x if you can choose some of your n coins such that their values sum up to x.

Return the maximum number of consecutive integer values that you can make with your coins starting from and including 0.

Note that you may have multiple coins of the same value.

Example 1:

Input: coins = [1,3]

Output: 2

Explanation: You can make the following values:

You can make 2 consecutive integer values starting from 0.

Example 2:

Input: coins = [1,1,1,4]

Output: 8

Explanation: You can make the following values:

You can make 8 consecutive integer values starting from 0.

Example 3:

Input: nums = [1,4,10,3,1]

Output: 20

Constraints:

Solution

class Solution {
    fun getMaximumConsecutive(coins: IntArray): Int {
        val count = IntArray(40001)
        for (c in coins) {
            count[c]++
        }
        var res = 1
        var i = 1
        while (i < count.size && i <= res) {
            res += i * count[i]
            i++
        }
        return res
    }
}