LeetCode in Kotlin

2521. Distinct Prime Factors of Product of Array

Medium

Given an array of positive integers nums, return the number of distinct prime factors in the product of the elements of nums.

Note that:

Example 1:

Input: nums = [2,4,3,7,10,6]

Output: 4

Explanation: The product of all the elements in nums is: 2 * 4 * 3 * 7 * 10 * 6 = 10080 = 25 * 32 * 5 * 7.

There are 4 distinct prime factors so we return 4.

Example 2:

Input: nums = [2,4,8,16]

Output: 1

Explanation: The product of all the elements in nums is: 2 * 4 * 8 * 16 = 1024 = 210.

There is 1 distinct prime factor so we return 1.

Constraints:

Solution

@Suppress("NAME_SHADOWING")
class Solution {
    fun distinctPrimeFactors(nums: IntArray): Int {
        val hasprime = BooleanArray(primes.size)
        val nr = BooleanArray(1001)
        var r = 0
        a@ for (n in nums) {
            var n = n
            if (nr[n]) continue
            nr[n] = true
            var i = 0
            while (i < primes.size && n > 1) {
                val prime = primes[i]
                while (n % prime == 0) {
                    n /= prime
                    hasprime[i] = true
                    if (nr[n]) continue@a
                    nr[n] = true
                }
                i++
            }
            if (n > 1) {
                r++
            }
        }
        for (p in hasprime) {
            if (p) r++
        }
        return r
    }

    companion object {
        val primes = intArrayOf(2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31)
    }
}