Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    923 - 3Sum With Multiplicity\.

    Medium

    Given an integer array arr, and an integer target, return the number of tuples i, j, k such that i < j < k and arr[i] + arr[j] + arr[k] == target.

    As the answer can be very large, return it modulo <code>10<sup>9</sup> + 7</code>.

    Example 1:

    Input: arr = 1,1,2,2,3,3,4,4,5,5, target = 8

    Output: 20

    Explanation:

    Enumerating by the values (arr[i], arr[j], arr[k]):
    (1, 2, 5) occurs 8 times;
    (1, 3, 4) occurs 8 times;
    (2, 2, 4) occurs 2 times;
    (2, 3, 3) occurs 2 times.

    Example 2:

    Input: arr = 1,1,2,2,2,2, target = 5

    Output: 12

    Explanation:

    arri = 1, arrj = arrk = 2 occurs 12 times:

    We choose one 1 from 1,1 in 2 ways,

    and two 2s from 2,2,2,2 in 6 ways.

    Constraints:

    • 3 &lt;= arr.length &lt;= 3000

    • 0 &lt;= arr[i] &lt;= 100

    • 0 &lt;= target &lt;= 300

    • 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 Integer threeSumMulti(IntArray arr, Integer target)
      • Methods inherited from class java.lang.Object

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