Loading...
百度&必应权4, 日IP8000. 查看详情
自助收录

2023年华为OD机考真题:优秀学员统计

算法刷题2年前 (2023)更新 江南白衣
302 0 0
2023年华为OD机考真题:优秀学员统计

全网最全面的华为OD机试真题汇总,100%原题题库,不需要开会员即可查看全部内容,更多考题请查看真题库。

真题库:https://www.yuque.com/codernav.com/od

题目:优秀学员统计
知识点排序统计编程基础
时间限制:1s 空间限制:256MB 限定语言:不限
题目描述:
公司某部门软件教导团正在组织新员工每日打卡学习活动,他们开展这项学习活动已经一个月了,所以想统计下这个月优秀的打卡员工。每个员工会对应一个id,每天的打卡记录记录当天打卡员工的id集合,一共30天。
请你实现代码帮助统计出打卡次数top5的员工。假如打卡次数相同,将较早参与打卡的员工排在前面,如果开始参与打卡的时间还是一样,将id较小的员工排在前面。
注:不考虑并列的情况,按规则返回前5名员工的id即可,如果当月打卡的员工少于5个,按规则排序返回所有有打卡记录的员工id。
输入描述:
第一行输入为新员工数量N,表示新员工编号id为0到N-1,N的范围为[1,100]
第二行输入为30个整数,表示每天打卡的员工数量,每天至少有1名员工打卡
之后30行为每天打卡的员工id集合,id不会重复
输出描述:
按顺序输出打卡top5员工的id,用空格隔开
补充说明:
同一天打卡的员工没有时间上早晚的区别。不保证所有员工都会打卡。排名只针对有打卡记录的员工。
示例1
输入:
11
4 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2
0 1 7 10
0 1 6 10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
10
6 10
7 10
输出:
10 0 1 7 6
说明:
员工编号范围为0-10,id为10的员工连续打卡30天,排第一,id为0,1,6,7的员工打卡都是两天,id为0,1,7的员工在第一天就打卡,比id为6的员工早,排在前面,0,1,7按id升序排序,所以输出[10,0,1,7,6]
示例2
输入:
7
6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
0 1 2 3 4 5
输出:
0 1 2 3 4
说明:
员工编号范围为0-6,id为0,1,2,3,4,5的员工打卡次数相同,最早开始打卡的时间也一样,所以按id升序返回前5个id
示例3
输入:
2
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0 1
0 1
输出:
1 0
说明:
只有两名员工参与打卡,按规则排序输出两名员工的id
解题思路:
使用map对象来统计打卡情况。
key:员工工号
value:int[]员工打卡情况
int[0]:第一次打开时间
int[1]:总打卡数
将map转换为list进行排序:
天数多的靠前;天数相同的第一次打卡时间在前的靠前

代码实现一:

package com.codernav.demo.hwod.exam;

import java.util.*;

/**
 * @title 优秀学员统计
 * @Description 公司某部门软件教导团正在组织新员工每日打卡学习活动,他们开展这项学习活动已经一个月了,所以想统计下这个月优秀的打卡员工。每个员工会对应一个id,每天的打卡记录记录当天打卡员工的id集合,一共30天。
 * 请你实现代码帮助统计出打卡次数top5的员工。假如打卡次数相同,将较早参与打卡的员工排在前面,如果开始参与打卡的时间还是一样,将id较小的员工排在前面。
 * 注:不考虑并列的情况,按规则返回前5名员工的id即可,如果当月打卡的员工少于5个,按规则排序返回所有有打卡记录的员工id。
 * @Author 开发者导航
 * @website https://codernav.com
 * @date 2023/5/14
 */
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        /**
         * 使用map来放置员工打卡情况
         * key:员工工号
         * value:int[]员工打卡情况
         *          int[0]:第一次打开时间
         *          int[1]:总打卡数
         */
        Map<Integer, int[]> map = new HashMap<>();
        int[] dayInts = new int[30];    //30天每天的打卡人数
        for (int i = 0; i < 30; i++) {
            dayInts[i] = sc.nextInt();
        }

        for (int i = 0; i < 30; i++) {
            for (int j = 0; j < dayInts[i]; j++) {    //用30天每天的打卡人数控制输入
                int input = sc.nextInt();
                if (input > N - 1) {      //输入值大于员工总数(工号从0开始)
                    continue;
                }
                int[] temp = new int[2];
                if (map.containsKey(input)) {
                    temp = map.get(input);
                    ++temp[1];
                } else {
                    temp[0] = i;
                    temp[1] = 1;
                }
                map.put(input, temp);
            }

        }

        List<Map.Entry<Integer, int[]>> mapList = new ArrayList<>(map.entrySet());  //将map转化为list进行排序
        mapList.sort((a, b) -> {
            if (b.getValue()[1] < a.getValue()[1]) {      //天数多的靠前
                return -1;
            } else if (b.getValue()[1] == a.getValue()[1]) {
                if (b.getValue()[0] > a.getValue()[0]) {      //天数相同的第一次打卡时间靠前
                    return -1;
                }
            }
            return 1;
        });

        StringBuilder res = new StringBuilder();
        for (int i = 0; i < (Math.min(mapList.size(), 5)); i++) {     //小于5的取所有,大于5的只取5
            res.append(mapList.get(i).getKey()).append(" ");
        }
        System.out.println(res.substring(0, res.length() - 1));
    }

}

代码实现二:

package com.codernav.demo.hwod.exam;

import java.util.HashMap;
import java.util.Map;
import java.util.PriorityQueue;
import java.util.Scanner;

/**
 * @title 优秀学员统计
 * @Description 公司某部门软件教导团正在组织新员工每日打卡学习活动,他们开展这项学习活动已经一个月了,所以想统计下这个月优秀的打卡员工。每个员工会对应一个id,每天的打卡记录记录当天打卡员工的id集合,一共30天。
 * 请你实现代码帮助统计出打卡次数top5的员工。假如打卡次数相同,将较早参与打卡的员工排在前面,如果开始参与打卡的时间还是一样,将id较小的员工排在前面。
 * 注:不考虑并列的情况,按规则返回前5名员工的id即可,如果当月打卡的员工少于5个,按规则排序返回所有有打卡记录的员工id。
 * @Author 开发者导航
 * @website https://codernav.com
 * @date 2023/5/14
 */
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        //人数
        int N = Integer.parseInt(in.nextLine());
        PriorityQueue<Man> queue = new PriorityQueue<>();
        int day = 0;
        HashMap<Integer, Man> map = new HashMap<>();
        in.nextLine();
        while (day < 30) {
            String[] list = in.nextLine().split(" ");
            for (String s : list) {
                int cur = Integer.parseInt(s);
                if (!map.containsKey(cur)) {
                    Man man = new Man(cur, 0, -1);
                    map.put(cur, man);
                }
                Man man = map.get(cur);
                man.count = man.count + 1;
                man.start = man.start == -1 ? day : man.start;
            }
            day++;
        }
        for (Map.Entry<Integer, Man> entry : map.entrySet()) {
            queue.offer(entry.getValue());
        }

        for (int i = 0; i < 5; i++) {
            Man man = queue.poll();
            System.out.print(man.id + " ");
            if (queue.isEmpty())
                break;
        }
    }
    
    static class Man implements Comparable {
        int id;
        int count;
        int start;

        public Man(int id, int count, int start) {
            this.id = id;
            this.count = count;
            this.start = start;
        }

        @Override
        public int compareTo(Object o) {
            Man other = (Man) o;
            if (this.count != other.count) {
                return other.count - this.count;
            } else {
                if (this.start != other.start) {
                    return this.start - other.start;
                } else {
                    return this.id - other.id;
                }
            }
        }
    }
}

 

© 版权声明

相关文章

暂无评论

暂无评论...