zoukankan      html  css  js  c++  java
  • code forces 436 C. Bus

    C. Bus
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    A bus moves along the coordinate line Ox from the point x = 0 to the point x = a. After starting from the point x = 0, it reaches the point x = a, immediately turns back and then moves to the point x = 0. After returning to the point x = 0 it immediately goes back to the point x = a and so on. Thus, the bus moves from x = 0 to x = a and back. Moving from the point x = 0 to x = a or from the point x = a to x = 0 is called a bus journey. In total, the bus must make k journeys.

    The petrol tank of the bus can hold b liters of gasoline. To pass a single unit of distance the bus needs to spend exactly one liter of gasoline. The bus starts its first journey with a full petrol tank.

    There is a gas station in point x = f. This point is between points x = 0 and x = a. There are no other gas stations on the bus route. While passing by a gas station in either direction the bus can stop and completely refuel its tank. Thus, after stopping to refuel the tank will contain b liters of gasoline.

    What is the minimum number of times the bus needs to refuel at the point x = f to make k journeys? The first journey starts in the point x = 0.

    Input

    The first line contains four integers a, b, f, k (0 < f < a ≤ 106, 1 ≤ b ≤ 109, 1 ≤ k ≤ 104) — the endpoint of the first bus journey, the capacity of the fuel tank of the bus, the point where the gas station is located, and the required number of journeys.

    Output

    Print the minimum number of times the bus needs to refuel to make k journeys. If it is impossible for the bus to make k journeys, print -1.

    Examples
    Input
    6 9 2 4
    Output
    4
    Input
    6 10 2 4
    Output
    2
    Input
    6 5 4 3
    Output
    -1
    Note

    In the first example the bus needs to refuel during each journey.

    In the second example the bus can pass 10 units of distance without refueling. So the bus makes the whole first journey, passes 4 units of the distance of the second journey and arrives at the point with the gas station. Then it can refuel its tank, finish the second journey and pass 2 units of distance from the third journey. In this case, it will again arrive at the point with the gas station. Further, he can refill the tank up to 10 liters to finish the third journey and ride all the way of the fourth journey. At the end of the journey the tank will be empty.

    In the third example the bus can not make all 3 journeys because if it refuels during the second journey, the tanks will contain only 5 liters of gasoline, but the bus needs to pass 8 units of distance until next refueling.

    /*
     * 题意:x轴0到x称为一个旅程,f点有一个加油站,要进行k个旅程,例如两个旅程:
     *  从0到a(一个),从a到0(又一个),油箱能装b升汽油,一个单位距离需要一升汽油,
     *  问你最少加多少次油
     *
     * 思路:就是模拟k次旅程
     * */
    /*
    * @Author: LyuC
    * @Date:   2017-09-25 18:34:42
    * @Last Modified by:   LyuC
    * @Last Modified time: 2017-09-25 21:22:41
    */
    #include <bits/stdc++.h>
    
    
    using namespace std;
    
    int a,b,f,k;
    int full;
    int res=0;
    int pos;
    
    int main(){
        scanf("%d%d%d%d",&a,&full,&f,&k);
        if(k==1){
            if(full<max(f,a-f)){
                puts("-1");
                return 0;
            }
        }else if(k==2){
            if(full<f||full<2*(a-f)){
                puts("-1");
                return 0;
            }
        }else{
            if(full<2*f||full<2*(a-f)){
                puts("-1");
                return 0;
            }
        }
        b=full;
        pos=1;
        for(int i=0;i<k;i++){
            if(i==k-1){
                if(b<a)
                    res++;
            }else{
                if(pos==1){
                    if(b-f>=2*(a-f)){
                        b-=a;
                    }else{
                        b=full-(a-f);
                        res++;
                    }
                }else{
                    if(b-(a-f)>=2*f){
                        b-=a;
                    }else{
                        b=full-f;
                        res++;
                    }
                }
                pos^=1;
            }
        }                
        printf("%d
    ",res);
        return 0;
    }
  • 相关阅读:
    python列表
    Apache ab压力测试
    nmon监控与 nmon analyser分析
    一些有用的cocos2d-x,box2d等网址链接
    手把手教你实现物理碰撞的网络同步
    cocos2dx-lua使用UIListView制作二级折叠菜单
    【Cocos2d-x游戏开发】Cocos2d-x中的弱联网技术
    Java游戏服务器成长之路——弱联网游戏篇(源码分析)
    在浏览器上实现自动引导(五)
    使用Cocos2d-JS制作游戏新手引导(四)应用篇
  • 原文地址:https://www.cnblogs.com/wuwangchuxin0924/p/7595695.html
Copyright © 2011-2022 走看看