当前位置:网站首页>LeetCode每日一题(2115. Find All Possible Recipes from Given Supplies)
LeetCode每日一题(2115. Find All Possible Recipes from Given Supplies)
2022-07-03 09:01:00 【wangjun861205】
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.
菜谱里面居然会出现会出现死循环, 我要做面包,需要面粉与奶油,但是面粉又需要面包来做,这感觉不像菜谱,更像经济学, 我们为工人提供面包才能产出面粉, 应该是这个意思。
抛开这些不太符合逻辑的问题不谈, 其实这就是一个路径查找问题, 我们吧 supplies 作为所有叶子节点的集合, 只要一个 recipe 中所有的 ingredients 都在 supplies 中出现了, 我们就认为我们可以做这种食物。如果 recipe 中的某种 ingredient 没有出现在 supplies 中, 那有两种可能, 一种是该 ingredient 本身也是一个 recipe, 并且我们还没有检查它是否能做得出来。另一种情况就是我们确实没有这种原料, 我们没法做成该食物。
use std::collections::{
HashMap, HashSet};
impl Solution {
fn find(
recipes: &HashMap<String, HashSet<String>>,
key: &str,
cache: &mut HashMap<String, bool>,
mut visited: HashSet<String>,
) -> bool {
visited.insert(key.to_owned());
if let Some(ok) = cache.get(key) {
return *ok;
}
if let Some(igds) = recipes.get(key) {
for igd in igds {
if visited.contains(igd) {
return false;
}
if let Some(igd) = cache.get(igd) {
if !(*igd) {
cache.insert(key.to_owned(), false);
return false;
}
continue;
}
if !Solution::find(recipes, igd, cache, visited.clone()) {
cache.insert(key.to_owned(), false);
return false;
}
}
cache.insert(key.to_owned(), true);
return true;
}
cache.insert(key.to_owned(), false);
false
}
pub fn find_all_recipes(
recipes: Vec<String>,
ingredients: Vec<Vec<String>>,
supplies: Vec<String>,
) -> Vec<String> {
let mut rc = HashMap::new();
for (r, igds) in recipes.clone().into_iter().zip(ingredients) {
let set: HashSet<String> = igds.into_iter().collect();
rc.insert(r, set);
}
let mut cache: HashMap<String, bool> = supplies.into_iter().map(|v| (v, true)).collect();
let mut ans = Vec::new();
for r in recipes {
if Solution::find(&rc, &r, &mut cache, HashSet::new()) {
ans.push(r);
}
}
ans
}
}
边栏推荐
- 2022-2-13 learning the imitation Niuke project - home page of the development community
- Usage of pandas to obtain MySQL data
- LeetCode 715. Range module
- Problems in the implementation of lenet
- Spark 集群安装与部署
- Win10 quick screenshot
- [point cloud processing paper crazy reading classic version 7] - dynamic edge conditioned filters in revolutionary neural networks on Graphs
- Beego learning - Tencent cloud upload pictures
- [set theory] order relation (chain | anti chain | chain and anti chain example | chain and anti chain theorem | chain and anti chain inference | good order relation)
- Spark structured stream writing Hudi practice
猜你喜欢
State compression DP acwing 291 Mondrian's dream
[point cloud processing paper crazy reading frontier version 11] - unsupervised point cloud pre training via occlusion completion
2022-1-6 Niuke net brush sword finger offer
Flask+supervisor installation realizes background process resident
How to check whether the disk is in guid format (GPT) or MBR format? Judge whether UEFI mode starts or legacy mode starts?
【点云处理之论文狂读前沿版13】—— GAPNet: Graph Attention based Point Neural Network for Exploiting Local Feature
Pic16f648a-e/ss PIC16 8-bit microcontroller, 7KB (4kx14)
LeetCode 438. Find all letter ectopic words in the string
[set theory] order relation (chain | anti chain | chain and anti chain example | chain and anti chain theorem | chain and anti chain inference | good order relation)
2022-2-13 learning the imitation Niuke project - home page of the development community
随机推荐
Hudi integrated spark data analysis example (including code flow and test results)
Modify idea code
【点云处理之论文狂读前沿版8】—— Pointview-GCN: 3D Shape Classification With Multi-View Point Clouds
Construction of simple database learning environment
2022-2-13 learning the imitation Niuke project - home page of the development community
PowerDesigner does not display table fields, only displays table names and references, which can be modified synchronously
Common formulas of probability theory
Derivation of Fourier transform
【Kotlin学习】高阶函数的控制流——lambda的返回语句和匿名函数
Go language - IO project
[kotlin learning] control flow of higher-order functions -- lambda return statements and anonymous functions
Win10 quick screenshot
[advanced feature learning on point clouds using multi resolution features and learning]
Notes on numerical analysis (II): numerical solution of linear equations
【点云处理之论文狂读经典版9】—— Pointwise Convolutional Neural Networks
Trial of the combination of RDS and crawler
Recommend a low code open source project of yyds
Problems in the implementation of lenet
Basic knowledge of database design
STM32F103 can learning record