Three Doubled Numbers - Google Top Interview Questions


Problem Statement :


Given a list of integers nums, return the number of triples i < j < k such that nums[i] * 2 = nums[j] and nums[j] * 2 = nums[k].

Constraints

0 ≤ n ≤ 100,000 where n is the length of nums

Example 1

Input

nums = [1, 0, 2, 4, 4]

Output

2

Explanation

There's [1, 2, 4] (with indices 0,2, and 3) and [1, 2, 4] (with indices 0, 2, 4)



Example 2

Input

nums = [4, 2, 1]

Output

0



Solution :



title-img




                        Solution in C++ :

int findPairs(vector<int> arr) {
    int ans = 0;
    map<int,int> m;
    for(int i = 0; i < arr.size(); i++) {
          if(arr[i] % 2 == 0) {
                ans += m[arr[i]/2];
         }
         m[arr[i]] += 1;
    }
    return ans;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int[] nums) {
        // construct suffix mappings
        Map<Integer, TreeMap<Integer, Integer>> suf = new HashMap();
        Map<Integer, Integer> counter = new HashMap();
        for (int i = nums.length - 1; i >= 0; i--) {
            int x = nums[i];
            counter.put(x, counter.getOrDefault(x, 0) + 1);

            suf.putIfAbsent(x, new TreeMap());
            int occur = counter.get(x);
            suf.get(x).put(i, occur);
        }

        // process and find our answer
        Map<Integer, Integer> aTracker = new HashMap();
        int ret = 0;
        for (int i = 0; i < nums.length; i++) {
            int b = nums[i];
            if (b % 2 == 0) {
                int a = b / 2;
                int c = b * 2;

                // amt of values to the left
                int backward = aTracker.getOrDefault(a, 0);

                // amt of values to the right
                int forward = 0;
                if (suf.containsKey(c)) {
                    Integer nextidx = suf.get(c).higherKey(i);
                    if (nextidx != null) {
                        forward = suf.get(c).get(nextidx);
                    }
                }

                ret += backward * forward;
            }
            aTracker.put(b, aTracker.getOrDefault(b, 0) + 1);
        }

        return ret;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, nums):
        first, second, third = Counter(), Counter(), Counter()

        for num in nums:
            third[num] += second[num / 2]
            second[num] += first[num / 2]
            first[num] += 1

        return sum(third.values())
                    


View More Similar Problems

Mr. X and His Shots

A cricket match is going to be held. The field is represented by a 1D plane. A cricketer, Mr. X has N favorite shots. Each shot has a particular range. The range of the ith shot is from Ai to Bi. That means his favorite shot can be anywhere in this range. Each player on the opposite team can field only in a particular range. Player i can field from Ci to Di. You are given the N favorite shots of M

View Solution →

Jim and the Skyscrapers

Jim has invented a new flying object called HZ42. HZ42 is like a broom and can only fly horizontally, independent of the environment. One day, Jim started his flight from Dubai's highest skyscraper, traveled some distance and landed on another skyscraper of same height! So much fun! But unfortunately, new skyscrapers have been built recently. Let us describe the problem in one dimensional space

View Solution →

Palindromic Subsets

Consider a lowercase English alphabetic letter character denoted by c. A shift operation on some c turns it into the next letter in the alphabet. For example, and ,shift(a) = b , shift(e) = f, shift(z) = a . Given a zero-indexed string, s, of n lowercase letters, perform q queries on s where each query takes one of the following two forms: 1 i j t: All letters in the inclusive range from i t

View Solution →

Counting On a Tree

Taylor loves trees, and this new challenge has him stumped! Consider a tree, t, consisting of n nodes. Each node is numbered from 1 to n, and each node i has an integer, ci, attached to it. A query on tree t takes the form w x y z. To process a query, you must print the count of ordered pairs of integers ( i , j ) such that the following four conditions are all satisfied: the path from n

View Solution →

Polynomial Division

Consider a sequence, c0, c1, . . . , cn-1 , and a polynomial of degree 1 defined as Q(x ) = a * x + b. You must perform q queries on the sequence, where each query is one of the following two types: 1 i x: Replace ci with x. 2 l r: Consider the polynomial and determine whether is divisible by over the field , where . In other words, check if there exists a polynomial with integer coefficie

View Solution →

Costly Intervals

Given an array, your goal is to find, for each element, the largest subarray containing it whose cost is at least k. Specifically, let A = [A1, A2, . . . , An ] be an array of length n, and let be the subarray from index l to index r. Also, Let MAX( l, r ) be the largest number in Al. . . r. Let MIN( l, r ) be the smallest number in Al . . .r . Let OR( l , r ) be the bitwise OR of the

View Solution →