Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    3569 - Maximize Count of Distinct Primes After Split.

    Hard

    You are given an integer array nums having length n and a 2D integer array queries where queries[i] = [idx, val].

    For each query:

    • Update nums[idx] = val.

    • Choose an integer k with 1 <= k < n to split the array into the non-empty prefix nums[0..k-1] and suffix nums[k..n-1] such that the sum of the counts of distinct prime values in each part is maximum.

    Note: The changes made to the array in one query persist into the next query.

    Return an array containing the result for each query, in the order they are given.

    Example 1:

    Input: nums = 2,1,3,1,2, queries = [1,2,3,3]

    Output: 3,4

    Explanation:

    • Initially nums = [2, 1, 3, 1, 2].

    • After 1<sup>st</sup> query, nums = [2, 2, 3, 1, 2]. Split nums into [2] and [2, 3, 1, 2]. [2] consists of 1 distinct prime and [2, 3, 1, 2] consists of 2 distinct primes. Hence, the answer for this query is 1 + 2 = 3.

    • After 2<sup>nd</sup> query, nums = [2, 2, 3, 3, 2]. Split nums into [2, 2, 3] and [3, 2] with an answer of 2 + 2 = 4.

    • The output is [3, 4].

    Example 2:

    Input: nums = 2,1,4, queries = [0,1]

    Output: 0

    Explanation:

    • Initially nums = [2, 1, 4].

    • After 1<sup>st</sup> query, nums = [1, 1, 4]. There are no prime numbers in nums, hence the answer for this query is 0.

    • The output is [0].

    Constraints:

    • <code>2 <= n == nums.length <= 5 * 10<sup>4</sup></code>

    • <code>1 <= queries.length <= 5 * 10<sup>4</sup></code>

    • <code>1 <= numsi<= 10<sup>5</sup></code>

    • 0 &lt;= queries[i][0] &lt; nums.length

    • <code>1 <= queries1<= 10<sup>5</sup></code>

    • 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 IntArray maximumCount(IntArray nums, Array<IntArray> queries)
      • Methods inherited from class java.lang.Object

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