【华为机考题】最少任务处理时常

问题描述

假设有一个机器,此机器每秒最大处理任务数量为N,现给定一个数组M,其长度大小为len, 表示len秒内,树组各个值表示该时刻所接受的任务数量。如下例所示:

输入:3 5 [1,2,3,4,5]
输出:6

解释:机器每秒能处理的最大任务数为3,在5秒内有【1,2,3,4,5】的任务数来请求执行,机器如果要全部处理该任务,至少需要6秒种时间。


代码解析

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int max = Integer.parseInt(in.nextLine());
        int len = Integer.parseInt(in.nextLine());
        String task = in.nextLine();
        in.close();
        String[] newTask = task.split(" ");
        // 当前任务数, i 时间
        int cur = 0, i = 0;
        do {
            if (i < len) {
                cur += Integer.parseInt(newTask[i]);
            }
            if (cur <= max) {
                cur = 0;
            } else {
                cur -= max;
            }
            i++;
        } while (cur > 0 || i < len);
        System.out.println(i);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值