Polyglot Contest - Amazon Top Interview Questions


Problem Statement :


You are given a two-dimensional list of strings languages, where languages[i] is a list of programming languages person i is fluent in.

Consider any list of programming languages such that everyone knows at least one language in it. Return the minimum size of such list.

Constraints

1 ≤ n, m ≤ 16 where n and m are the number of rows and columns in languages.
1 ≤ l ≤ 32 where l is the total number of distinct strings in languages.

Example 1

Input

languages = [
    ["Java", "Perl"],
    ["C++", "Python"],
    ["Haskell"]
]

Output

3

Explanation

There is no overlap between the languages. Therefore any combination that uses one language from each participant is valid.

Example 2

Input

languages = [
    ["Java", "C++", "Python"],
    ["Python", "Cobol", "Java"],
    ["C++", "Haskell"],
    ["Ruby", "C++"]
]

Output

2

Explanation

Valid combinations are ["Cobol", "C++"], ["Java", "C++"] and ["Python", "C++"].

Example 3

Input

languages = [
    ["C", "Python", "Haskell", "Kotlin"],
    ["Java", "JavaScript", "C++", "Rust"],
    ["JavaScript", "Python", "C++"],
    ["Ruby", "C++"],
    ["Rust", "Python", "Java"]
]

Output

2

Explanation

The only minimal combination is ["Python", "C++"].



Solution :



title-img




                        Solution in C++ :

int solve(vector<vector<string>>& languages) {
    int persons_count = languages.size();

    vector<int> dp(1 << persons_count, INT32_MAX);

    unordered_map<string, int> language_masks;
    for (int i = 0; i < languages.size(); ++i) {
        for (const auto& language : languages[i]) {
            language_masks[language] |= (1 << i);
        }
    }

    dp[0] = 0;
    for (int mask = 1; mask < (1 << persons_count); ++mask) {
        int bit = __builtin_ctz(mask);

        for (auto& l : languages[bit]) {
            int new_mask = mask ^ (language_masks[l] & mask);
            dp[mask] = min(dp[mask], 1 + dp[new_mask]);
        }
    }

    return dp[(1 << persons_count) - 1];
}
                    




                        Solution in Python : 
                            
class Solution:
    def solve(self, languages):
        language_set = functools.reduce(set.union, map(set, languages))
        language_index = {language: index for index, language in enumerate(language_set)}
        language_masks = [
            sum((1 << language_index[language]) for language in participant_languages)
            for participant_languages in languages
        ]
        n = len(languages)
        l = len(language_set)

        @functools.lru_cache(None)
        def dp(language_index, participant_mask):
            if not participant_mask:
                return 0
            if language_index == l:
                return math.inf

            new_participant_mask = participant_mask
            for participant_index in range(n):
                if new_participant_mask & (1 << participant_index) and language_masks[
                    participant_index
                ] & (1 << language_index):
                    new_participant_mask ^= 1 << participant_index

            return min(
                1 + dp(language_index + 1, new_participant_mask),
                dp(language_index + 1, participant_mask),
            )

        return dp(0, (1 << n) - 1)
                    


View More Similar Problems

Lazy White Falcon

White Falcon just solved the data structure problem below using heavy-light decomposition. Can you help her find a new solution that doesn't require implementing any fancy techniques? There are 2 types of query operations that can be performed on a tree: 1 u x: Assign x as the value of node u. 2 u v: Print the sum of the node values in the unique path from node u to node v. Given a tree wi

View Solution →

Ticket to Ride

Simon received the board game Ticket to Ride as a birthday present. After playing it with his friends, he decides to come up with a strategy for the game. There are n cities on the map and n - 1 road plans. Each road plan consists of the following: Two cities which can be directly connected by a road. The length of the proposed road. The entire road plan is designed in such a way that if o

View Solution →

Heavy Light White Falcon

Our lazy white falcon finally decided to learn heavy-light decomposition. Her teacher gave an assignment for her to practice this new technique. Please help her by solving this problem. You are given a tree with N nodes and each node's value is initially 0. The problem asks you to operate the following two types of queries: "1 u x" assign x to the value of the node . "2 u v" print the maxim

View Solution →

Number Game on a Tree

Andy and Lily love playing games with numbers and trees. Today they have a tree consisting of n nodes and n -1 edges. Each edge i has an integer weight, wi. Before the game starts, Andy chooses an unordered pair of distinct nodes, ( u , v ), and uses all the edge weights present on the unique path from node u to node v to construct a list of numbers. For example, in the diagram below, Andy

View Solution →

Heavy Light 2 White Falcon

White Falcon was amazed by what she can do with heavy-light decomposition on trees. As a resut, she wants to improve her expertise on heavy-light decomposition. Her teacher gave her an another assignment which requires path updates. As always, White Falcon needs your help with the assignment. You are given a tree with N nodes and each node's value Vi is initially 0. Let's denote the path fr

View Solution →

Library Query

A giant library has just been inaugurated this week. It can be modeled as a sequence of N consecutive shelves with each shelf having some number of books. Now, being the geek that you are, you thought of the following two queries which can be performed on these shelves. Change the number of books in one of the shelves. Obtain the number of books on the shelf having the kth rank within the ra

View Solution →