Number of Fractions that Sum to 1 - Microsoft Top Interview Questions


Problem Statement :


You are given a list of lists fractions where each list contains [numerator, denominator] which represents the number numerator / denominator.

Return the number of pairs of fractions there are that sums to 1.

Constraints

n ≤ 100,000 where n is the length of fractions

Example 1

Input

fractions = [

    [1, 4],

    [2, 5],

    [3, 4],

    [3, 5],

    [5, 10],

    [1, 2],

    [1, 2]

]

Output

5

Explanation

1/4 + 3/4, 2/5 + 3/5, 5/10 + 1/2, 5/10 + 1/2, 1/2 + 1/2 are the five pairs which sum to 1



Solution :



title-img




                        Solution in C++ :

struct fraction {
    long long up, down;
    fraction(int u, int d) {
        long long gcd = __gcd(u, d);
        up = u / gcd, down = d / gcd;
    }

    const bool operator==(const fraction& that) const {
        return up == that.up and down == that.down;
    }
};

template <>
struct std::hash<fraction> {
    size_t operator()(const fraction& k) const {
        return std::hash<int>()(k.up) ^ std::hash<int>()(k.down);
    }
};

fraction partner(const fraction& a) {
    return fraction(a.down - a.up, a.down);
}

int solve(vector<vector<int>>& fractions) {
    int res = 0;
    unordered_map<fraction, int> fre;

    for (const vector<int>& f : fractions) {
        auto a = fraction(f[0], f[1]);
        auto b = partner(a);  // b = 1 - a;
        res += fre[b];
        fre[a]++;
    }
    return res;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    int gcd(int a, int b) {
        if (a == 0)
            return b;
        return gcd(b % a, a);
    }
    public int solve(int[][] fractions) {
        int res = 0;
        HashMap<Pair<Integer, Integer>, Integer> hm = new HashMap();
        for (int[] f : fractions) {
            int a = f[0], b = f[1];
            int g = gcd(a, b);
            a /= g;
            b /= g;
            Pair cur = new Pair(a, b);
            Pair match = new Pair(b - a, b);
            res += hm.getOrDefault(match, 0);
            hm.put(cur, hm.getOrDefault(cur, 0) + 1);
        }
        return res;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, fractions):
        def find_gcd(a, b):
            if b == 0:
                return a
            return find_gcd(b, a % b)

        seen = {}
        res = 0
        for n, d in fractions:
            gcd = find_gcd(d, n)
            n //= gcd
            d //= gcd
            res += seen.get((d - n, d), 0)
            seen[(n, d)] = seen.get((n, d), 0) + 1
        return res
                    


View More Similar Problems

Reverse a linked list

Given the pointer to the head node of a linked list, change the next pointers of the nodes so that their order is reversed. The head pointer given may be null meaning that the initial list is empty. Example: head references the list 1->2->3->Null. Manipulate the next pointers of each node in place and return head, now referencing the head of the list 3->2->1->Null. Function Descriptio

View Solution →

Compare two linked lists

You’re given the pointer to the head nodes of two linked lists. Compare the data in the nodes of the linked lists to check if they are equal. If all data attributes are equal and the lists are the same length, return 1. Otherwise, return 0. Example: list1=1->2->3->Null list2=1->2->3->4->Null The two lists have equal data attributes for the first 3 nodes. list2 is longer, though, so the lis

View Solution →

Merge two sorted linked lists

This challenge is part of a tutorial track by MyCodeSchool Given pointers to the heads of two sorted linked lists, merge them into a single, sorted linked list. Either head pointer may be null meaning that the corresponding list is empty. Example headA refers to 1 -> 3 -> 7 -> NULL headB refers to 1 -> 2 -> NULL The new list is 1 -> 1 -> 2 -> 3 -> 7 -> NULL. Function Description C

View Solution →

Get Node Value

This challenge is part of a tutorial track by MyCodeSchool Given a pointer to the head of a linked list and a specific position, determine the data value at that position. Count backwards from the tail node. The tail is at postion 0, its parent is at 1 and so on. Example head refers to 3 -> 2 -> 1 -> 0 -> NULL positionFromTail = 2 Each of the data values matches its distance from the t

View Solution →

Delete duplicate-value nodes from a sorted linked list

This challenge is part of a tutorial track by MyCodeSchool You are given the pointer to the head node of a sorted linked list, where the data in the nodes is in ascending order. Delete nodes and return a sorted list with each distinct value in the original list. The given head pointer may be null indicating that the list is empty. Example head refers to the first node in the list 1 -> 2 -

View Solution →

Cycle Detection

A linked list is said to contain a cycle if any node is visited more than once while traversing the list. Given a pointer to the head of a linked list, determine if it contains a cycle. If it does, return 1. Otherwise, return 0. Example head refers 1 -> 2 -> 3 -> NUL The numbers shown are the node numbers, not their data values. There is no cycle in this list so return 0. head refer

View Solution →