美团笔试,第一题AC,第二题Leetcode269

public class 美团骑手包裹区间分组 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        Map<Character, Integer> map = new HashMap<>();
        for (int i = 0; i < line.length(); i++) {
            map.put(line.charAt(i), i);
        }
        int index = 0;
        int count = 0;
        for (int i = 0; i < line.length(); i++) {
            char c = line.charAt(i);
            count = Math.max(count, map.get(c));
            if (i == count) {
                if (count == line.length() - 1) {
                    System.out.println(count + 1 - index);
                    break;
                } else {
                    System.out.println(count + 1 - index + "");
                    index = count + 1;
                }
            }
        }
    }
}
public class 火星文字典 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        String[] strs = line.split(" ");
        StringBuilder sb = new StringBuilder();
        Map<Character, Integer> degree = new HashMap<>();
        for (String str : strs) {
            for (char c : str.toCharArray()) {
                degree.put(c, 0);
            }
        }
        Map<Character, Set<Character>> map = new HashMap<>();
        for (int i = 0; i < strs.length - 1; i++) {
            String cur = strs[i];
            String next = strs[i + 1];
            int len = Math.min(cur.length(), next.length());
            for (int j = 0; j < len; j++) {
                char c1 = cur.charAt(j);
                char c2 = next.charAt(j);
                if (c1 != c2) {
                    Set<Character> set = new HashSet<>();
                    if (map.containsKey(c1)) set = map.get(c1);
                    if (!set.contains(c2)) {
                        set.add(c2);
                        map.put(c1, set);
                        degree.put(c2, degree.get(c2) + 1);
                    }
                    break;
                }
            }
        }
        LinkedList<Character> queue = new LinkedList<>();
        for (Map.Entry<Character, Integer> entry : degree.entrySet()) {
            if (entry.getValue() == 0) {
                queue.add(entry.getKey());
            }
        }

        while (!queue.isEmpty()) {
            char parent = queue.poll();
            sb.append(parent);
            if (map.containsKey(parent)) {
                for (char child : map.get(parent)) {
                    degree.put(child, degree.get(child) - 1);
                    if (degree.get(child) == 0) queue.offer(child);
                }
            }
        }
        System.out.println(sb.toString());
    }
}
第一题A了,第二题有点蒙,然后直接输出 invalid,AC 36,这是刚找的网上的代码 

#美团##leetcode#
全部评论
第二题我把给的案例都输了,过55%
点赞 回复
分享
发布于 2019-08-22 16:36

相关推荐

点赞 16 评论
分享
牛客网
牛客企业服务