Acm hdu 1008 elevator

Source: Internet
Author: User
Elevator

Time Limit: 2000/1000 MS (Java/others) memory limit: 65536/32768 K (Java/Others)
Total submission (s): 16549 accepted submission (s): 8795

Problem descriptionthe 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.

Inputthere 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.

Outputprint the total time on a single line for each test case.

Sample input1 2
3 2 3 1
0

Sample output17
41

Authorzheng, Jianqiang

Sourcezjcpc2004

Recommendjgshining:
 # Include  <  Stdio. h >  
Int Main ()
{
Int N;
Int Start,;
Int T;
Int I;
While (Scanf ( " % D " , & N), n)
{
T = 0 ; Start = 0 ;
For ( Int I = 1 ; I <= N; I ++ )
{
Scanf ( " % D " , & A );
If ( > Start) T + = 6 * ( - Start );
Else T + = 4 * (Start - A );
T + = 5 ;
Start = A;
}
Printf ( " % D \ n " , T );
}
Return 0 ;
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.