首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >PAT 1008 Elevator (20分) 状态迭代更新+加减法

PAT 1008 Elevator (20分) 状态迭代更新+加减法

作者头像
vivi
发布2020-07-14 10:43:34
发布2020-07-14 10:43:34
42200
代码可运行
举报
文章被收录于专栏:vblogvblog
运行总次数:0
代码可运行

题目

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 Specification: Each input file contains one test case. Each case contains a positive integer N, followed by N positive numbers. All the numbers in the input are less than 100.

Output Specification: For each test case, print the total time on a single line.

Sample Input: 3 2 3 1 Sample Output: 41

题目解读

模拟坐电梯,假设你初始在第0层,给出一个正整数序列模拟电梯将要逐个停靠的楼层,上一层楼花费6s,下一层楼花费4s,电梯在每一层都要停靠5s,问你,走完给出的所有楼层,一共需要花费多少时间?

这道题真的很简单,你只需要考虑你当前位置和下一个要去的楼层就可以了,+6+4,然后都要+5到达下一个楼层后,这个楼层就变为你所处的”当前位置“,然后继续判断下一个楼层是上还是下.......重复这个过程,直到走完所有楼层。

注意题目说了,电梯最终不需要回到0层,所以不要自作聪明哦!

代码

只需要注意更新”当前所处位置“就可以了。

代码语言:javascript
代码运行次数:0
运行
复制
#include <iostream>
using namespace std;

int main() {

    int n;
    cin >> n;
    // 刚开始在第0层
    int now = 0, next;
    int time = 0;
    for (int i = 0; i < n; ++i) {
        cin >> next;
        // 向上一层6s
        if (next > now) 
            time += (next - now) * 6;
        // 向下一层4s
        else if (next < now)
            time += (now - next) * 4;
        // 到达后停留5s
        time += 5;
        // 移动当前位置
        now = next;
    }
    cout << time;
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-05-18 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题目
  • 题目解读
  • 代码
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档