ZOJ 2256Mincost

来源:互联网 发布:淘宝客网站推广技巧 编辑:程序博客网 时间:2024/06/05 14:22

The cost of taking a taxi in Hangzhou is not a constant for each kilometer you travel: the first 4 kilometers costs 10 yuan (yuan is the monetary unit in China), even if you don't finish it; the next 4 kilometers costs 2 yuan each and the price for the rest of the trip is 2.4 yuan per kilometer; the last part of the trip is regarded as 1 kilometer even if it's shorter. A traveller may reduce the cost by reseting the meter at the middle of the trip if used wisely. For example, if the trip is 16 kilometers, he should cut it into two parts with the same length, each half will cost 18 yuan, with an overall cost of 36, less than the original price of 37.2. Now, given the length of the trip, find the minimum cost.


Input


The input contains several cases, each has one positive integer in a seperate line, representing the length of the trip. All input data are less than 10000000. Proceed until a case with zero, which should be ignored.


Output


For each case, output the minimum cost, leave one digit after decimal point if NECESSARY.


Sample Input


3
9
16
0


Sample Output


10
20.4
36

简单题,根据题意判断即可。

#include<bits/stdc++.h>using namespace std;const int N=1e5+10;int n;double f[N];int main(){    f[0]=f[1]=f[2]=f[3]=f[4]=10;    f[5]=12; f[6]=14; f[7]=16; f[8]=18;    while(~scanf("%d",&n)&&n)    {        if (n<=8) printf("%d\n",(int)f[n]);        else        {            if (n%8==0) printf("%d\n",(int)(n/8*f[8]));            else            {                double k=(n/8)*f[8];                if (n%8<5) printf("%.1lf\n",k+(n%8)*2.4);                else printf("%d\n",(int)(k+f[n%8]));            }        }    }    return 0;}


0 0
原创粉丝点击