FastPrepFastPrep
Problem Brief

Project Estimates

FULLTIMEINTERNOA

A number of bids are being taken for a project. Determine the number of distinct pairs of project costs where their absolute difference is some target value. Two pairs are distinct if they differ in at least one value.

Function Description

Complete the function countPairs in the editor.

countPairs has the following parameter(s):

  • int projectCosts[n]: array of integers
  • int target: the target difference
  • Returns

  • int: the number of distinct pairs in projectCosts with an absolute difference of target
  • 1Example 1

    Input
    n = 5, projectCosts = [1, 5, 3, 4, 2], target = 2
    Output
    3
    Explanation
    Count the number of pairs in projectCosts whose difference is target = 2. The following three pairs meet the criterion: (1, 3), (5, 3), and (4, 2).

    2Example 2

    Input
    n = 3, projectCosts = [1, 3, 5], target = 2
    Output
    2
    Explanation
    There are 2 pairs [1, 3], [3, 5] that have the target difference target = 2, therefore a value of 2 is returned.

    Constraints

    Limits and guarantees your solution can rely on.

  • 5 < n <= 2 * 105
  • 0 < projectCosts[i] <= 2 * 109
  • Each projectCosts[i] is distinct, i.e. unique within projectCosts
  • 1 <= target<= 109
  • public int countPairs(int n, int[] projectCosts, int target) {
        // write your code here
    }
    
    Input

    n

    5

    projectCosts

    [1, 5, 3, 4, 2]

    target

    2

    Output

    3

    Sign in to submit your solution.