码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1008 Elevator

时间:2014-08-29 15:56:58      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:style   io   for   sp   amp   on   size   c   as   

题解:简单模拟

#include <cstdio>    
int main(){  
    int n,tmp,ans,now,pre;      
    while(~scanf("%d",&n)&&n){  
        ans=0; pre=0;
        for(int i=0;i<n;i++){  
            scanf("%d",&now);  
            tmp=now-pre;  
            if(tmp>0)ans+=(tmp*6+5);  
            else if(tmp<0)ans+=(-tmp*4+5);  
            else ans+=5; pre=now;   
        }printf("%d\n",ans);  
    }return 0;  
} 

HDU 1008 Elevator

标签:style   io   for   sp   amp   on   size   c   as   

原文地址:http://www.cnblogs.com/forever97/p/3945079.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!