华为OD机试真题 - 执行时长

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int GPU = scanner.nextInt();
        int runableCount = scanner.nextInt();
        PriorityQueue priorityQueue = new PriorityQueue(new Comparator() {
            @Override
            public int compare(Integer o1, Integer o2) {
                return o2 - o1;
            }
        });
        for (int i = 0; i < runableCount; i++) {
            priorityQueue.add(scanner.nextInt());
        }
        System.out.println(getMinTime(GPU, priorityQueue));
    }

    public static int getMinTime(int GPUCount, PriorityQueue runables) {
        GPUPoll poll = new GPUPoll(GPUCount);
        int i = 0;
        while (!runables.isEmpty()) {
            while (poll.hasBanancePoll() != -1) {
                if (runables.peek() != null)
                    poll.poll[poll.hasBanancePoll()] = runables.poll();
                else break;
            }
            poll.execut();
            i++;
        }
        i += poll.getMaxTime();
        return i;
    }

    static class GPUPoll {
        int[] poll;

        public GPUPoll(int count) {
            this.poll = new int[count];
        }

        public void execut() {
            for (int i = 0; i < poll.length; i++) {
                poll[i] -= 1;
            }
        }

        public int hasBanancePoll() {
            for (int i = 0; i < poll.length; i++) {
                if (poll[i] == 0)
                    return i;
            }
            return -1;
        }

        public int getMaxTime() {
            int max = Integer.MIN_VALUE;
            for (int i = 0; i < poll.length; i++) {
if (poll[i] > 0) {
                    max = Math.max(max,poll[i]);
                }
            }
            return max;
        }
    }
全部评论

相关推荐

11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务