• 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;
    }


  • 相关阅读:
    腾讯QQ家族任意支付QB+修改资料csrf
    腾讯QQ积分CSRF导致积分任意挥霍(我的积分为什么少了)
    腾讯大湘网某处csrf(city.hn.qq.com)可投诉刷留言
    路由器下再连接一台路由器
    PHP安全之临时文件的安全
    通过NAT转发实现私网对外发布信息
    asp adodb.stream读取文件和写文件
    解决:ADODB.Stream 错误 '800a0bbc' 写入文件失败
    笑话一则
    spring-boot-2.0.3源码篇
  • 原文地址:https://www.cnblogs.com/lipoicyclic/p/12906486.html
Copyright © 2020-2023  润新知