zoukankan      html  css  js  c++  java
  • Educational Codeforces Round 87 (Rated for Div. 2) A. Alarm Clock(模拟)

    Polycarp has spent the entire day preparing problems for you. Now he has to sleep for at least aa minutes to feel refreshed.

    Polycarp can only wake up by hearing the sound of his alarm. So he has just fallen asleep and his first alarm goes off in bb minutes.

    Every time Polycarp wakes up, he decides if he wants to sleep for some more time or not. If he's slept for less than aa minutes in total, then he sets his alarm to go off in cc minutes after it is reset and spends dd minutes to fall asleep again. Otherwise, he gets out of his bed and proceeds with the day.

    If the alarm goes off while Polycarp is falling asleep, then he resets his alarm to go off in another cc minutes and tries to fall asleep for dd minutes again.

    You just want to find out when will Polycarp get out of his bed or report that it will never happen.

    Please check out the notes for some explanations of the example.

    Input

    The first line contains one integer tt (1t10001≤t≤1000) — the number of testcases.

    The only line of each testcase contains four integers a,b,c,da,b,c,d (1a,b,c,d1091≤a,b,c,d≤109) — the time Polycarp has to sleep for to feel refreshed, the time before the first alarm goes off, the time before every succeeding alarm goes off and the time Polycarp spends to fall asleep.

    Output

    For each test case print one integer. If Polycarp never gets out of his bed then print -1. Otherwise, print the time it takes for Polycarp to get out of his bed.

    Example
    Input
    Copy
    7
    10 3 6 4
    11 3 6 4
    5 9 4 10
    6 5 2 3
    1 1 1 1
    3947465 47342 338129 123123
    234123843 13 361451236 361451000
    
    Output
    Copy
    27
    27
    9
    -1
    1
    6471793
    358578060125049
    这题最难的地方是阅读理解...
    直接模拟就好,注意d>=c是不可能的,c-d不能整除a-b的话要向上取整。
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int t;
        cin>>t;
        while(t--)
        {
            long long a,b,c,d,ans=0;
            cin>>a>>b>>c>>d;
            if(b>=a)cout<<b<<endl;
            else 
            {
                if(d>=c)cout<<-1<<endl;
                else
                {
                    if(0==(a-b)%(c-d))cout<<b+(a-b)/(c-d)*c<<endl;
                    else cout<<b+(1+(a-b)/(c-d))*c<<endl; 
                }
            }
        }
        return 0;
    }


  • 相关阅读:
    UWP AppConnection.
    Qt 多线程使用moveToThread
    C#综合细说进程、应用程序域与上下文
    C++ std::function
    商品价格加价区间的实现(策略模式)
    学习web前端三个月感悟
    triangle leetcode C++
    Linux入门视频
    轻松学习Linux之进程监视与管理
    阻止缓冲区溢出攻击
  • 原文地址:https://www.cnblogs.com/lipoicyclic/p/12906486.html
Copyright © 2011-2022 走看看