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.
The first line contains one integer tt (1≤t≤10001≤t≤1000) — the number of testcases.
The only line of each testcase contains four integers a,b,c,da,b,c,d (1≤a,b,c,d≤1091≤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.
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.
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
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; }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 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框架的用法!