21-7-6 点菜展示表

  1. 点菜展示表 难度[中等]

给你一个数组 orders,表示客户在餐厅中完成的订单,确切地说, orders[i]=[customerNamei,tableNumberi,foodItemi] ,其中 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
对于餐桌 3:David 点了 "Ceviche""Fried Chicken",而 Rous 点了 "Ceviche"
而餐桌 5:Carla 点了 "Water""Ceviche"
餐桌 10:Corina 点了 "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"]]
解释:
对于餐桌 1:Adam 和 Brianna 都点了 "Canadian Waffles"
而餐桌 12:James, Ratesh 和 Amadeus 都点了 "Fried Chicken"

示例 3:

输入:orders = [["Laura","2","Bean Burrito"],["Jhon","2","Beef Burrito"],["Melissa","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 范围内的整数。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/display-table-of-food-orders-in-a-restaurant
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。


解法一:TreeSet & TreeMap

class Solution {
    public List<List<String>> displayTable(List<List<String>> orders) {
        List<List<String>> ans = new ArrayList<>();
        Set<String> foodItem = new TreeSet<>();
        Map<Integer,Map<String,Integer>> tableOrder = new TreeMap<>();
        for(List<String> order :orders){
            Integer t = Integer.parseInt(order.get(1));
            String food = order.get(2);
            foodItem.add(food);
            if(tableOrder.containsKey(t)){
                Map<String,Integer> map = tableOrder.get(t);
                map.put(food,map.getOrDefault(food,0)+1);
                tableOrder.put(t,map);
            }else {
                Map<String,Integer> map = new HashMap<>();
                map.put(food,1);
                tableOrder.put(t,map);
            }
        }
        List<String> foods = new ArrayList<>(foodItem);
        List<Integer> tables = new ArrayList<>(tableOrder.keySet());
        List<String> title = new ArrayList<>();
        title.add("Table");
        title.addAll(foods);
        ans.add(title);

        for(Integer t:tables){
            List<String> torder = new ArrayList<>();
            torder.add(t.toString());
            for(String f:foods){
                Map<String,Integer> map = tableOrder.get(t);
                if(map.containsKey(f)){
                    torder.add(map.get(f).toString());
                }else {
                    torder.add("0");
                }
            }
            ans.add(torder);
        }
        return  ans;
    }
}

解法二:HashSet & HashMap

class Solution {
    public List<List<String>> displayTable(List<List<String>> orders) {
        List<List<String>> ans = new ArrayList<>();
        Set<String> foodItem = new HashSet<>();
        //Set<Integer> table = new HashSet<>();
        Map<Integer,Map<String,Integer>> tableOrder = new HashMap<>();
        for(List<String> order :orders){
            Integer t = Integer.parseInt(order.get(1));
            String food = order.get(2);
            foodItem.add(food);
            //table.add(t);
            if(tableOrder.containsKey(t)){
                Map<String,Integer> map = tableOrder.get(t);
                map.put(food,map.getOrDefault(food,0)+1);
                tableOrder.put(t,map);
            }else {
                Map<String,Integer> map = new HashMap<>();
                map.put(food,1);
                tableOrder.put(t,map);
            }
        }
        List<String> foods = new ArrayList<>(foodItem);
        //foods.sort((a,b)->a.compareTo(b));
        Collections.sort(foods);
        //List<Integer> tables = new ArrayList<>(table);
        List<Integer> tables = new ArrayList<>(tableOrder.keySet());
        //tables.sort((a,b)->(a-b));
        Collections.sort(tables);
        List<String> title = new ArrayList<>();
        title.add("Table");
        title.addAll(foods);

        ans.add(title);
        for(Integer t:tables){
            List<String> torder = new ArrayList<>();
            torder.add(t.toString());
            for(String f:foods){
                Map<String,Integer> map = tableOrder.get(t);
                if(map.containsKey(f)){
                    torder.add(map.get(f).toString());
                }else {
                    torder.add("0");
                }
            }
            ans.add(torder);
        }
        return  ans;
    }
}

参考


此文章创于本人学习时的记录,如有错误或更优解还请指出

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值