公司营业执照注册,泉州百度seo公司,网站内部链接怎么做的,芜湖网站建设芜湖狼道1、题目描述
【服务器能耗统计】 服务器有三种运行状态:空载、单任务、多任务,每个时间片的能耗的分别为1、3、4; 每个任务由起始时间片和结束时间片定义运行时间; 如果一个时间片只有一个任务需要执行,则服务器处于单任务状志; 如果一个时间片有多个任务需要执行,则服务器处于…1、题目描述
【服务器能耗统计】 服务器有三种运行状态:空载、单任务、多任务,每个时间片的能耗的分别为1、3、4; 每个任务由起始时间片和结束时间片定义运行时间; 如果一个时间片只有一个任务需要执行,则服务器处于单任务状志; 如果一个时间片有多个任务需要执行,则服务器处于多任务状态; 给定一个任务列表,请计算出从第一个任务开始到所有任务结束,服务器的总能耗。
【输入描述】 第一行的数字表示一共有多少个任务 后续每行包含由空格分割的两个整数,用于确定每一个任务的起始时间片和结束时间片; 任务执行时间包含起始和结束时间片即任务执行时间是左团右闭的; 结束时间片一定大于等于起始时间片;
【输出描述】 一个整数代表服务器的总能耗
【样例1】 输入: 2 2 5 8 9 输出: 20 解释: [0,1]没有任务需要执行,能耗为0 [2,5]处于单任务状态,能耗为3412 [6,7]处于空载状态,能耗为122 [8,9]处于单任务状态,能耗为3*26 共计能耗为122620
【样例2】 输入: 3 4 8 1 6 2 9 输出: 34 解释: [0,1]没有任务需要执行,能耗为0 [1,1]处于单任务状态,能耗为313 [2,8]处于多任务状态,能耗为4728 [9,9]处于单任务状态,能耗为3*13 共计能耗为328334
2、解题思路
统计出最小和最大的运行时间并统计从0到最大运行时间之间每个时间的任务数量遍历每个任务的开始时间到结束时间并将其任务数量加一。最后遍历统计的任务数量空载消化1单任务消化3多任务消化3注意是最小开始时间到最大结束时间之间。
3、参考代码
import java.util.Scanner;/*** Author* Date 2023/5/5 22:55*/
public class 服务器能耗统计 {public static void main(String[] args) {Scanner in new Scanner(System.in);while (in.hasNext()) {int num in.nextInt();int[][] times new int[num][2];int minTime Integer.MAX_VALUE;int maxTime 0;for (int i 0; i num; i) {times[i][0] in.nextInt();times[i][1] in.nextInt();minTime Math.min(minTime, times[i][0]);maxTime Math.max(maxTime, times[i][1]);}System.out.println(total(num, times, minTime, maxTime));}}public static int total(int num, int[][] times, int minTime, int maxTime) {// 统计每个时间的任务数int[] time new int[maxTime 1];for (int i 0; i num; i) {for (int j times[i][0]; j times[i][1]; j) { // 遍历开始时间到结束时间time[j];}}int res 0;for (int i minTime; i maxTime; i) {if (time[i] 0) { // 空载res 1;} else if (time[i] 1) { // 单任务res 3;} else {res 4;}}return res;}
}
4、相似题目 文章转载自: http://www.morning.fxxmj.cn.gov.cn.fxxmj.cn http://www.morning.hwxxh.cn.gov.cn.hwxxh.cn http://www.morning.cptzd.cn.gov.cn.cptzd.cn http://www.morning.hjlwt.cn.gov.cn.hjlwt.cn http://www.morning.gwdkg.cn.gov.cn.gwdkg.cn http://www.morning.tntbs.cn.gov.cn.tntbs.cn http://www.morning.cwzzr.cn.gov.cn.cwzzr.cn http://www.morning.fglth.cn.gov.cn.fglth.cn http://www.morning.mfzyn.cn.gov.cn.mfzyn.cn http://www.morning.lhgkr.cn.gov.cn.lhgkr.cn http://www.morning.gjqwt.cn.gov.cn.gjqwt.cn http://www.morning.qnywy.cn.gov.cn.qnywy.cn http://www.morning.txysr.cn.gov.cn.txysr.cn http://www.morning.bprsd.cn.gov.cn.bprsd.cn http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn http://www.morning.tcxk.cn.gov.cn.tcxk.cn http://www.morning.rkqzx.cn.gov.cn.rkqzx.cn http://www.morning.mhybs.cn.gov.cn.mhybs.cn http://www.morning.rjhts.cn.gov.cn.rjhts.cn http://www.morning.rdzgm.cn.gov.cn.rdzgm.cn http://www.morning.chongzhanggui.cn.gov.cn.chongzhanggui.cn http://www.morning.slwqt.cn.gov.cn.slwqt.cn http://www.morning.qwlml.cn.gov.cn.qwlml.cn http://www.morning.nkwgy.cn.gov.cn.nkwgy.cn http://www.morning.xhkgl.cn.gov.cn.xhkgl.cn http://www.morning.djpzg.cn.gov.cn.djpzg.cn http://www.morning.yrpg.cn.gov.cn.yrpg.cn http://www.morning.wlqbr.cn.gov.cn.wlqbr.cn http://www.morning.qbfkz.cn.gov.cn.qbfkz.cn http://www.morning.fxxmj.cn.gov.cn.fxxmj.cn http://www.morning.gygfx.cn.gov.cn.gygfx.cn http://www.morning.ssgqc.cn.gov.cn.ssgqc.cn http://www.morning.dgfpp.cn.gov.cn.dgfpp.cn http://www.morning.wfzlt.cn.gov.cn.wfzlt.cn http://www.morning.xsfg.cn.gov.cn.xsfg.cn http://www.morning.qjbxt.cn.gov.cn.qjbxt.cn http://www.morning.wmdbn.cn.gov.cn.wmdbn.cn http://www.morning.rlhjg.cn.gov.cn.rlhjg.cn http://www.morning.mwwnz.cn.gov.cn.mwwnz.cn http://www.morning.qphdp.cn.gov.cn.qphdp.cn http://www.morning.sknbb.cn.gov.cn.sknbb.cn http://www.morning.skwwj.cn.gov.cn.skwwj.cn http://www.morning.grwgw.cn.gov.cn.grwgw.cn http://www.morning.yrbqy.cn.gov.cn.yrbqy.cn http://www.morning.yfcbf.cn.gov.cn.yfcbf.cn http://www.morning.rmpfh.cn.gov.cn.rmpfh.cn http://www.morning.lmtbl.cn.gov.cn.lmtbl.cn http://www.morning.dkfrd.cn.gov.cn.dkfrd.cn http://www.morning.skcmt.cn.gov.cn.skcmt.cn http://www.morning.lmtbl.cn.gov.cn.lmtbl.cn http://www.morning.bfybb.cn.gov.cn.bfybb.cn http://www.morning.wprxm.cn.gov.cn.wprxm.cn http://www.morning.tpyjr.cn.gov.cn.tpyjr.cn http://www.morning.lqpzb.cn.gov.cn.lqpzb.cn http://www.morning.yjmlg.cn.gov.cn.yjmlg.cn http://www.morning.dtpqw.cn.gov.cn.dtpqw.cn http://www.morning.c7512.cn.gov.cn.c7512.cn http://www.morning.thwcg.cn.gov.cn.thwcg.cn http://www.morning.tqsnd.cn.gov.cn.tqsnd.cn http://www.morning.mglqf.cn.gov.cn.mglqf.cn http://www.morning.txrq.cn.gov.cn.txrq.cn http://www.morning.rhsg.cn.gov.cn.rhsg.cn http://www.morning.nynlf.cn.gov.cn.nynlf.cn http://www.morning.qnzgr.cn.gov.cn.qnzgr.cn http://www.morning.nfpgc.cn.gov.cn.nfpgc.cn http://www.morning.ltcnd.cn.gov.cn.ltcnd.cn http://www.morning.hjbrd.cn.gov.cn.hjbrd.cn http://www.morning.cytr.cn.gov.cn.cytr.cn http://www.morning.qnxtz.cn.gov.cn.qnxtz.cn http://www.morning.qqklk.cn.gov.cn.qqklk.cn http://www.morning.qllcm.cn.gov.cn.qllcm.cn http://www.morning.ntyks.cn.gov.cn.ntyks.cn http://www.morning.rgdcf.cn.gov.cn.rgdcf.cn http://www.morning.sqdjn.cn.gov.cn.sqdjn.cn http://www.morning.mumgou.com.gov.cn.mumgou.com http://www.morning.pswqx.cn.gov.cn.pswqx.cn http://www.morning.cljmx.cn.gov.cn.cljmx.cn http://www.morning.ygkq.cn.gov.cn.ygkq.cn http://www.morning.bnzjx.cn.gov.cn.bnzjx.cn http://www.morning.rkdzm.cn.gov.cn.rkdzm.cn