1418:点菜展示表

This commit is contained in:
huangge1199 2021-07-06 11:21:02 +08:00
parent 6b6f3cd2d6
commit 96e2404644
3 changed files with 169 additions and 1 deletions

View File

@ -0,0 +1,118 @@
//给你一个数组 orders表示客户在餐厅中完成的订单确切地说 orders[i]=[customerNamei,tableNumberi,foodIt
//emi] 其中 customerNamei 是客户的姓名tableNumberi 是客户所在餐桌的桌号 foodItemi 是客户点的餐品名称
//
// 请你返回该餐厅的 点菜展示表 在这张表中表中第一行为标题其第一列为餐桌桌号 Table 后面每一列都是按字母顺序排列的餐品名称接下来每一行中
//的项则表示每张餐桌订购的相应餐品数量第一列应当填对应的桌号后面依次填写下单的餐品数量
//
// 注意客户姓名不是点菜展示表的一部分此外表中的数据行应该按餐桌桌号升序排列
//
//
//
// 示例 1
//
// 输入orders = [["David","3","Ceviche"],["Corina","10","Beef Burrito"],["David",
//"3","Fried Chicken"],["Carla","5","Water"],["Carla","5","Ceviche"],["Rous","3","
//Ceviche"]]
//输出[["Table","Beef Burrito","Ceviche","Fried Chicken","Water"],["3","0","2","1
//","0"],["5","0","1","0","1"],["10","1","0","0","0"]]
//解释
//点菜展示表如下所示
//Table,Beef Burrito,Ceviche,Fried Chicken,Water
//3 ,0 ,2 ,1 ,0
//5 ,0 ,1 ,0 ,1
//10 ,1 ,0 ,0 ,0
//对于餐桌 3David 点了 "Ceviche" "Fried Chicken" Rous 点了 "Ceviche"
//而餐桌 5Carla 点了 "Water" "Ceviche"
//餐桌 10Corina 点了 "Beef Burrito"
//
//
// 示例 2
//
// 输入orders = [["James","12","Fried Chicken"],["Ratesh","12","Fried Chicken"],[
//"Amadeus","12","Fried Chicken"],["Adam","1","Canadian Waffles"],["Brianna","1","
//Canadian Waffles"]]
//输出[["Table","Canadian Waffles","Fried Chicken"],["1","2","0"],["12","0","3"]]
//
//解释
//对于餐桌 1Adam Brianna 都点了 "Canadian Waffles"
//而餐桌 12James, Ratesh Amadeus 都点了 "Fried Chicken"
//
//
// 示例 3
//
// 输入orders = [["Laura","2","Bean Burrito"],["Jhon","2","Beef Burrito"],["Melis
//sa","2","Soda"]]
//输出[["Table","Bean Burrito","Beef Burrito","Soda"],["2","1","1","1"]]
//
//
//
//
// 提示
//
//
// 1 <= orders.length <= 5 * 10^4
// orders[i].length == 3
// 1 <= customerNamei.length, foodItemi.length <= 20
// customerNamei foodItemi 由大小写英文字母及空格字符 ' ' 组成
// tableNumberi 1 500 范围内的整数
//
// Related Topics 数组 哈希表 字符串 有序集合 排序
// 👍 30 👎 0
package leetcode.editor.cn;
import java.util.*;
import java.util.stream.Collectors;
//1418:点菜展示表
public class DisplayTableOfFoodOrdersInARestaurant {
public static void main(String[] args) {
//测试代码
Solution solution = new DisplayTableOfFoodOrdersInARestaurant().new Solution();
System.out.println(solution.displayTable(
Arrays.asList(
Arrays.asList("David", "3", "Ceviche"),
Arrays.asList("Corina", "10", "Beef Burrito"),
Arrays.asList("David", "3", "Fried Chicken"),
Arrays.asList("Carla", "5", "Water"),
Arrays.asList("Carla", "5", "Ceviche"),
Arrays.asList("Rous", "3", "Ceviche")
)
// new ListListString("[[\"David\",\"3\",\"Ceviche\"],[\"Corina\",\"10\",\"Beef Burrito\"],[\"David\",\"3\",\"Fried Chicken\"],[\"Carla\",\"5\",\"Water\"],[\"Carla\",\"5\",\"Ceviche\"],[\"Rous\",\"3\",\"Ceviche\"]]").get()
));
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public List<List<String>> displayTable(List<List<String>> orders) {
Map<Integer, Map<String, Integer>> map = new HashMap<>();
Set<String> foods = new HashSet<>();
for (List<String> order : orders) {
int key = Integer.parseInt(order.get(1));
Map<String, Integer> orderMap = map.getOrDefault(key, new HashMap<>());
orderMap.put(order.get(2), orderMap.getOrDefault(order.get(2), 0) + 1);
map.put(key, orderMap);
foods.add(order.get(2));
}
List<String> items = foods.stream().sorted().collect(Collectors.toList());
items.add(0, "Table");
orders = new ArrayList<>();
orders.add(items);
Object[] keys = map.keySet().toArray();
Arrays.sort(keys);
for (Object key : keys) {
List<String> list = new ArrayList<>();
for (int i = 1; i < items.size(); i++) {
list.add(map.get(key).getOrDefault(items.get(i), 0).toString());
}
list.add(0, key.toString());
orders.add(list);
}
return orders;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,50 @@
<p>给你一个数组 <code>orders</code>,表示客户在餐厅中完成的订单,确切地说, <code>orders[i]=[customerName<sub>i</sub>,tableNumber<sub>i</sub>,foodItem<sub>i</sub>]</code> ,其中 <code>customerName<sub>i</sub></code> 是客户的姓名,<code>tableNumber<sub>i</sub></code> 是客户所在餐桌的桌号,而 <code>foodItem<sub>i</sub></code> 是客户点的餐品名称。</p>
<p>请你返回该餐厅的 <strong>点菜展示表</strong><em></em>在这张表中,表中第一行为标题,其第一列为餐桌桌号 &ldquo;Table&rdquo; ,后面每一列都是按字母顺序排列的餐品名称。接下来每一行中的项则表示每张餐桌订购的相应餐品数量,第一列应当填对应的桌号,后面依次填写下单的餐品数量。</p>
<p>注意:客户姓名不是点菜展示表的一部分。此外,表中的数据行应该按餐桌桌号升序排列。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>orders = [[&quot;David&quot;,&quot;3&quot;,&quot;Ceviche&quot;],[&quot;Corina&quot;,&quot;10&quot;,&quot;Beef Burrito&quot;],[&quot;David&quot;,&quot;3&quot;,&quot;Fried Chicken&quot;],[&quot;Carla&quot;,&quot;5&quot;,&quot;Water&quot;],[&quot;Carla&quot;,&quot;5&quot;,&quot;Ceviche&quot;],[&quot;Rous&quot;,&quot;3&quot;,&quot;Ceviche&quot;]]
<strong>输出:</strong>[[&quot;Table&quot;,&quot;Beef Burrito&quot;,&quot;Ceviche&quot;,&quot;Fried Chicken&quot;,&quot;Water&quot;],[&quot;3&quot;,&quot;0&quot;,&quot;2&quot;,&quot;1&quot;,&quot;0&quot;],[&quot;5&quot;,&quot;0&quot;,&quot;1&quot;,&quot;0&quot;,&quot;1&quot;],[&quot;10&quot;,&quot;1&quot;,&quot;0&quot;,&quot;0&quot;,&quot;0&quot;]]
<strong>解释:
</strong>点菜展示表如下所示:
<strong>Table,Beef Burrito,Ceviche,Fried Chicken,Water</strong>
3 ,0 ,2 ,1 ,0
5 ,0 ,1 ,0 ,1
10 ,1 ,0 ,0 ,0
对于餐桌 3David 点了 &quot;Ceviche&quot;&quot;Fried Chicken&quot;,而 Rous 点了 &quot;Ceviche&quot;
而餐桌 5Carla 点了 &quot;Water&quot;&quot;Ceviche&quot;
餐桌 10Corina 点了 &quot;Beef Burrito&quot;
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>orders = [[&quot;James&quot;,&quot;12&quot;,&quot;Fried Chicken&quot;],[&quot;Ratesh&quot;,&quot;12&quot;,&quot;Fried Chicken&quot;],[&quot;Amadeus&quot;,&quot;12&quot;,&quot;Fried Chicken&quot;],[&quot;Adam&quot;,&quot;1&quot;,&quot;Canadian Waffles&quot;],[&quot;Brianna&quot;,&quot;1&quot;,&quot;Canadian Waffles&quot;]]
<strong>输出:</strong>[[&quot;Table&quot;,&quot;Canadian Waffles&quot;,&quot;Fried Chicken&quot;],[&quot;1&quot;,&quot;2&quot;,&quot;0&quot;],[&quot;12&quot;,&quot;0&quot;,&quot;3&quot;]]
<strong>解释:</strong>
对于餐桌 1Adam 和 Brianna 都点了 &quot;Canadian Waffles&quot;
而餐桌 12James, Ratesh 和 Amadeus 都点了 &quot;Fried Chicken&quot;
</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>orders = [[&quot;Laura&quot;,&quot;2&quot;,&quot;Bean Burrito&quot;],[&quot;Jhon&quot;,&quot;2&quot;,&quot;Beef Burrito&quot;],[&quot;Melissa&quot;,&quot;2&quot;,&quot;Soda&quot;]]
<strong>输出:</strong>[[&quot;Table&quot;,&quot;Bean Burrito&quot;,&quot;Beef Burrito&quot;,&quot;Soda&quot;],[&quot;2&quot;,&quot;1&quot;,&quot;1&quot;,&quot;1&quot;]]
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<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><code>foodItem<sub>i</sub></code> 由大小写英文字母及空格字符 <code>&#39; &#39;</code> 组成。</li>
<li><code>tableNumber<sub>i</sub></code><code>1</code><code>500</code> 范围内的整数。</li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>哈希表</li><li>字符串</li><li>有序集合</li><li>排序</li></div></div>\n<div><li>👍 30</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long