Welcome to Subscribe On Youtube

Formatted question description: https://leetcode.ca/all/2115.html

2115. Find All Possible Recipes from Given Supplies (Medium)

You have information about n different recipes. You are given a string array recipes and a 2D string array ingredients. The ith recipe has the name recipes[i], and you can create it if you have all the needed ingredients from ingredients[i]. Ingredients to a recipe may need to be created from other recipes, i.e., ingredients[i] may contain a string that is in recipes.

You are also given a string array supplies containing all the ingredients that you initially have, and you have an infinite supply of all of them.

Return a list of all the recipes that you can create. You may return the answer in any order.

Note that two recipes may contain each other in their ingredients.

 

Example 1:

Input: recipes = ["bread"], ingredients = [["yeast","flour"]], supplies = ["yeast","flour","corn"]
Output: ["bread"]
Explanation:
We can create "bread" since we have the ingredients "yeast" and "flour".

Example 2:

Input: recipes = ["bread","sandwich"], ingredients = [["yeast","flour"],["bread","meat"]], supplies = ["yeast","flour","meat"]
Output: ["bread","sandwich"]
Explanation:
We can create "bread" since we have the ingredients "yeast" and "flour".
We can create "sandwich" since we have the ingredient "meat" and can create the ingredient "bread".

Example 3:

Input: recipes = ["bread","sandwich","burger"], ingredients = [["yeast","flour"],["bread","meat"],["sandwich","meat","bread"]], supplies = ["yeast","flour","meat"]
Output: ["bread","sandwich","burger"]
Explanation:
We can create "bread" since we have the ingredients "yeast" and "flour".
We can create "sandwich" since we have the ingredient "meat" and can create the ingredient "bread".
We can create "burger" since we have the ingredient "meat" and can create the ingredients "bread" and "sandwich".

 

Constraints:

  • n == recipes.length == ingredients.length
  • 1 <= n <= 100
  • 1 <= ingredients[i].length, supplies.length <= 100
  • 1 <= recipes[i].length, ingredients[i][j].length, supplies[k].length <= 10
  • recipes[i], ingredients[i][j], and supplies[k] consist only of lowercase English letters.
  • All the values of recipes and supplies combined are unique.
  • Each ingredients[i] does not contain any duplicate values.

Companies:
Google

Related Topics:
Array, Hash Table, String, Graph, Topological Sort

Similar Questions:

Solution 1. Topological Sort

// OJ: https://leetcode.com/problems/find-all-possible-recipes-from-given-supplies/
// Time: O(NW) where `N` is the total number of unique recipes and ingredients and `W` is the maximum number of occurrence of an ingredients showing up in recipes
// Space: O(NW)
class Solution {
public:
    vector<string> findAllRecipes(vector<string>& recipes, vector<vector<string>>& ingredients, vector<string>& supplies) {
        int id = 0;
        unordered_map<string, int> m; // name -> id
        for (auto &r : recipes) m[r] = id++;
        for (auto &v : ingredients) {
            for (auto &s : v) {
                if (m.count(s) == 0) m[s] = id++;
            }
        }
        vector<vector<int>> G(id);
        vector<int> indegree(id);
        for (int i = 0; i < recipes.size(); ++i) {
            for (auto &s : ingredients[i]) {
                G[m[s]].push_back(i);
                indegree[i]++;
            }
        }
        queue<int> q;
        for (auto &s : supplies) q.push(m[s]);
        vector<string> ans;
        while (q.size()) {
            int u = q.front();
            q.pop();
            for (int v : G[u]) {
                if (--indegree[v] == 0) {
                    q.push(v);
                    ans.push_back(recipes[v]);
                }
            }
        }
        return ans;
    }
};

All Problems

All Solutions