LeetCode 1418. Display Table of Food Orders in a Restaurant Solution in Java, C++, Python & More | Explanation + Code

CoderIndeed
0
1418. Display Table of Food Orders in a Restaurant

Description

Given the array orders, which represents the orders that customers have done in a restaurant. More specifically orders[i]=[customerNamei,tableNumberi,foodItemi] where customerNamei is the name of the customer, tableNumberi is the table customer sit at, and foodItemi is the item customer orders.

Return the restaurant's “display table. The “display table” is a table whose row entries denote how many of each food item each table ordered. The first column is the table number and the remaining columns correspond to each food item in alphabetical order. The first row should be a header whose first column is “Table”, followed by the names of the food items. Note that the customer names are not part of the table. Additionally, the rows should be sorted in numerically increasing order.

 

Example 1:


Input: orders = [["David","3","Ceviche"],["Corina","10","Beef Burrito"],["David","3","Fried Chicken"],["Carla","5","Water"],["Carla","5","Ceviche"],["Rous","3","Ceviche"]]

Output: [["Table","Beef Burrito","Ceviche","Fried Chicken","Water"],["3","0","2","1","0"],["5","0","1","0","1"],["10","1","0","0","0"]] 

Explanation:

The displaying table looks like:

Table,Beef Burrito,Ceviche,Fried Chicken,Water

3    ,0           ,2      ,1            ,0

5    ,0           ,1      ,0            ,1

10   ,1           ,0      ,0            ,0

For the table 3: David orders "Ceviche" and "Fried Chicken", and Rous orders "Ceviche".

For the table 5: Carla orders "Water" and "Ceviche".

For the table 10: Corina orders "Beef Burrito". 

Example 2:


Input: orders = [["James","12","Fried Chicken"],["Ratesh","12","Fried Chicken"],["Amadeus","12","Fried Chicken"],["Adam","1","Canadian Waffles"],["Brianna","1","Canadian Waffles"]]

Output: [["Table","Canadian Waffles","Fried Chicken"],["1","2","0"],["12","0","3"]] 

Explanation: 

For the table 1: Adam and Brianna order "Canadian Waffles".

For the table 12: James, Ratesh and Amadeus order "Fried Chicken".

Example 3:


Input: orders = [["Laura","2","Bean Burrito"],["Jhon","2","Beef Burrito"],["Melissa","2","Soda"]]

Output: [["Table","Bean Burrito","Beef Burrito","Soda"],["2","1","1","1"]]

 

Constraints:

    <li><code>1 &lt;=&nbsp;orders.length &lt;= 5 * 10^4</code></li>
    
    <li><code>orders[i].length == 3</code></li>
    
    <li><code>1 &lt;= customerName<sub>i</sub>.length, foodItem<sub>i</sub>.length &lt;= 20</code></li>
    
    <li><code>customerName<sub>i</sub></code> and <code>foodItem<sub>i</sub></code> consist of lowercase and uppercase English letters and the space character.</li>
    
    <li><code>tableNumber<sub>i</sub>&nbsp;</code>is a valid integer between <code>1</code> and <code>500</code>.</li>
    

Solutions

Solution 1: Hash Table + Sorting

We can use a hash table tables to store the dishes ordered at each table, and a set items to store all the dishes.

Traverse orders, storing the dishes ordered at each table in tables and items.

Then we sort items to get sortedItems.

Next, we construct the answer array ans. First, add the header row header to ans. Then, traverse the sorted tables. For each table, use a counter cnt to count the number of each dish, then construct a row row and add it to ans.

Finally, return ans.

The time complexity is O(n + m × log m + k × log k + m × k), and the space complexity is O(n + m + k). Here, n is the length of the array orders, while m and k represent the number of dish types and the number of tables, respectively.

PythonJavaC++GoTypeScript
class Solution: def displayTable(self, orders: List[List[str]]) -> List[List[str]]: tables = defaultdict(list) items = set() for _, table, foodItem in orders: tables[int(table)].append(foodItem) items.add(foodItem) sorted_items = sorted(items) ans = [["Table"] + sorted_items] for table in sorted(tables): cnt = Counter(tables[table]) row = [str(table)] + [str(cnt[item]) for item in sorted_items] ans.append(row) return ans(code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !