Design a food rating system that can do the following:
Implement the FoodRatings class:
FoodRatings(String[] foods, String[] cuisines, int[] ratings) Initializes the system. The food items are described by foods, cuisines and ratings, all of which have a length of n.foods[i] is the name of the ith food,cuisines[i] is the type of cuisine of the ith food, andratings[i] is the initial rating of the ith food.void changeRating(String food, int newRating) Changes the rating of the food item with the name food.String highestRated(String cuisine) Returns the name of the food item that has the highest rating for the given type of cuisine. If there is a tie, return the item with the lexicographically smaller name.Note that a string x is lexicographically smaller than string y if x comes before y in dictionary order, that is, either x is a prefix of y, or if i is the first position such that x[i] != y[i], then x[i] comes before y[i] in alphabetic order.
Input
["FoodRatings", "highestRated", "highestRated", "changeRating", "highestRated", "changeRating", "highestRated"]
[[["kimchi", "miso", "sushi", "moussaka", "ramen", "bulgogi"], ["korean", "japanese", "japanese", "greek", "japanese", "korean"], [9, 12, 8, 15, 14, 7]],
["korean"], ["japanese"], ["sushi", 16], ["japanese"], ["ramen", 16], ["japanese"]]
Output
[null, "kimchi", "ramen", null, "sushi", null, "ramen"]
Explanation
1 <= n <= 2 * 104n == foods.length == cuisines.length == ratings.length1 <= foods[i].length, cuisines[i].length <= 10foods[i], cuisines[i] consist of lowercase English letters.1 <= ratings[i] <= 108foods are distinct.food will be the name of a food item in the system across all calls to changeRating.cuisine will be a type of cuisine of at least one food item in the system across all calls to highestRated.2 * 104 calls in total will be made to changeRating and highestRated.In this approach, we maintain lists to track the food, cuisine, and ratings. Every operation such as adding, removing, or finding the highest rating will require iterating through these lists.
changeRating: O(n) where n is the number of foods.highestRated: O(n) for searching through the list.Using HashMaps to store foods and their details allows for faster access and update. However, for finding the highest rated food of a specific cuisine, sorting is still required, which can be optimized further.
changeRating: O(1) for direct update via HashMap.highestRated: O(m log m), where m is the number of foods for a specific cuisine.Leverage the TreeMap that keeps entries sorted based on keys, which can be used to maintain a sorted order of the ratings while supporting efficient lookup for finding the highest rated meal.
changeRating: O(log m) where m is the number of interacting foods in the same cuisine due to the TreeMap operations.highestRated: O(1), quick access to the highest rating using TreeMap.