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;
}
复制代码

 



posted @   脂环  阅读(417)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示
主题色彩