博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Elevator
阅读量:6901 次
发布时间:2019-06-27

本文共 1739 字,大约阅读时间需要 5 分钟。

Problem Description

The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the elevator up one floor, and 4 seconds to move down one floor. The elevator will stay for 5 seconds at each stop.
For a given request list, you are to compute the total time spent to fulfill the requests on the list. The elevator is on the 0th floor at the beginning and does not have to return to the ground floor when the requests are fulfilled.
 
Input
There are multiple test cases. Each case contains a positive integer N, followed by N positive numbers. All the numbers in the input are less than 100. A test case with N = 0 denotes the end of input. This test case is not to be processed.
 
Output
Print the total time on a single line for each test case.
 
Sample Input
1 2 3 2 3 1 0
 
Sample Output
17 41
 
AC代码:
1 import java.util.Scanner; 2  3 public class Main{ 4     public static void main(String[] args) { 5         Scanner sc = new Scanner(System.in); 6         while (sc.hasNext()) { 7             int n = sc.nextInt(); // 输入要停留几个楼层 8             if (n == 0) 9                 System.exit(0);10             int a = 0;   // 初始化楼层11             int sum = 0;12             for (int i = 0; i < n; i++) {13                 int b = sc.nextInt();14                 if (b > a) {15                     sum += (b - a) * 6 + 5;16                     a = b;17                 } else {18                     sum += (a - b) * 4 + 5;19                     a = b;20                 }21             }22             System.out.println(sum);23         }24     }25 }

 

转载于:https://www.cnblogs.com/ixummer/p/8036891.html

你可能感兴趣的文章
数学之美系列四 -- 怎样度量信息?
查看>>
用Access+SharePoint 来收集数据
查看>>
Nginx 的 Location 配置指令块
查看>>
Spark小课堂Week5 Scala初探
查看>>
go练习1-翻转字符串
查看>>
java第一天学习笔记
查看>>
GPS定位为什么要转换处理?高德地图和百度地图坐标处理有什么不一样?
查看>>
简单代码在ABAP中实现声音的播放
查看>>
冲刺博客 五
查看>>
poj 2389 大整数乘法
查看>>
redis数据类型
查看>>
JSON.stringify JSON.parse
查看>>
第三次作业
查看>>
13-标准文档流
查看>>
就业指导第三次作业
查看>>
vscode格式化设置
查看>>
接口测试工具-Jmeter使用笔记(五:正则表达式提取器)
查看>>
VBA-从周课表统计节次
查看>>
(二十三)控制转移指令
查看>>
编译时设置动态链接库路径
查看>>