HDU1008

 

  
  
  
  
  1. #include<iostream>  
  2. using namespace std;  
  3. int main()  
  4. {  
  5.     int f[100];  
  6.     int t;  
  7.     int i;  
  8.       
  9.     while(cin>>i)  
  10.     {  
  11.         if(i==0)break;  
  12.         t=0;  
  13.         cin>>f[0];  
  14.         t+=f[0]*6+5;  
  15.         for(int j=1;j<i;j++)  
  16.         {  
  17.             cin>>f[j];  
  18.             if(f[j]>=f[j-1])  
  19.                 t+=(f[j]-f[j-1])*6+5;  
  20.             else 
  21.                 t+=(f[j-1]-f[j])*4+5;  
  22.  
  23.         }  
  24.           
  25.         cout<<t<<endl;  
  26.     }  
  27.     //cin>>t;  
  28.     return 0;  
  29.  

 

你可能感兴趣的:(职场,ACM,HDU,休闲)