coderforces 702DRoad to Post Office

    xiaoxiao2025-10-21  9

    D. Road to Post Office time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output

    Vasiliy has a car and he wants to get from home to the post office. The distance which he needs to pass equals to d kilometers.

    Vasiliy's car is not new — it breaks after driven every k kilometers and Vasiliy needs t seconds to repair it. After repairing his car Vasiliy can drive again (but after k kilometers it will break again, and so on). In the beginning of the trip the car is just from repair station.

    To drive one kilometer on car Vasiliy spends a seconds, to walk one kilometer on foot he needs b seconds (a < b).

    Your task is to find minimal time after which Vasiliy will be able to reach the post office. Consider that in every moment of time Vasiliy can left his car and start to go on foot.

    Input

    The first line contains 5 positive integers d, k, a, b, t (1 ≤ d ≤ 10121 ≤ k, a, b, t ≤ 106a < b), where:

    d — the distance from home to the post office; k — the distance, which car is able to drive before breaking; a — the time, which Vasiliy spends to drive 1 kilometer on his car; b — the time, which Vasiliy spends to walk 1 kilometer on foot; t — the time, which Vasiliy spends to repair his car. Output

    Print the minimal time after which Vasiliy will be able to reach the post office.

    Examples input 5 2 1 4 10 output 14 input 5 2 1 4 5 output 13 Note

    In the first example Vasiliy needs to drive the first 2 kilometers on the car (in 2 seconds) and then to walk on foot 3 kilometers (in 12 seconds). So the answer equals to 14 seconds.

    In the second example Vasiliy needs to drive the first 2 kilometers on the car (in 2 seconds), then repair his car (in 5 seconds) and drive 2 kilometers more on the car (in 2 seconds). After that he needs to walk on foot 1 kilometer (in 4 seconds). So the answer equals to 13 seconds.

    题意:求到邮局所需要的最短时间

    #include <cstdio> #include <cstdlib> #include <iostream> #include <algorithm> using namespace std; typedef __int64 LL; int main() { LL d,k,a,b,t; while(~scanf("%I64d%I64d%I64d%I64d%I64d",&d,&k,&a,&b,&t)) { LL T = 0; if(d <= k) { T = min(a*d,b*d); } else { T = min(a * k,b * k); if(a * k + t < b * k) { T += (a * k + t) * (d / k - 1); if(d % k) T += min(a * (d % k) + t , b * (d % k)); } else { T += b * (d - k); } } printf("%I64d\n",T); } return 0; }

    转载请注明原文地址: https://ju.6miu.com/read-1303380.html
    最新回复(0)