[code] PTA 胡凡算法笔记 DAY040
Posted wait_for_that_day5
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[code] PTA 胡凡算法笔记 DAY040相关的知识,希望对你有一定的参考价值。
文章目录
题目 A1008 Elevator
-
题意
输入电梯需要达到的层数序列,电梯上行需要6s
,下行4s
,每层需要停5s
,计算总共需要花费的时长并输出。 -
思路
这一题没有要求计算最小的时长,所以就是按照输入的序列根据上行还是下行处理就好,需要注意的是达到楼层之后都需要停5s
即可。 -
Code in C++
#include <cstdio>
int main()
int n, total = 0, now = 0, to;
scanf("%d", &n);
for (int i = 0; i < n; ++i)
scanf("%d", &to);
if (to > now)
total += ((to - now) * 6);
else
total += ((now - to) * 4);
total += 5;
now = to;
printf("%d", total);
return 0;
小结
就是一个简单的计算题。
以上是关于[code] PTA 胡凡算法笔记 DAY040的主要内容,如果未能解决你的问题,请参考以下文章