【模拟】Workout for a Dumbbell

本文介绍了一个关于健身中心训练时间计算的问题,通过编程解决了Jim在使用10台健身器械进行三轮训练时,如何计算总训练时间的问题。考虑到了Jim和其他使用者在器械使用及恢复时间上的相互影响。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目描述
Jim Ratt has just joined a local fitness center. He’s especially excited about a sequence of 10 machines that he cycles through three times for his workout. He has a fixed time which he spends on each machine, as well as a fixed recovery time after using a machine. Jim’s not the brightest guy in the world, but in the absence of anything else even he would easily be able to calculate how long his workout would take. 
But of course, Jim isn’t the only person who uses the fitness center and wouldn’t you know it but when Jim shows up there are always 10 other people there, each using one of the ten machines exclusively. Like Jim, each person has a fixed time they use on their machine as well as a fixed recovery time. This will sometimes cause Jim to have to wait for a particular machine, and Jim’s usage sometimes results in the other people having to wait as well (though if both Jim and another person want to start using a machine at the same time, Jim is polite enough to let the other person go first). Jim has gone to the center often enough that he has a good idea what everyone’s usage and recovery times are, but he has trouble determining how long it will take him to perform his workout. That’s where you are going to flex your programming muscles.

 

输入
Input starts with a line containing twenty integers; the first two give Jim’s usage and recovery time for machine 1, the next two give Jim’s usage and recovery time for machine 2, etc. The next line contains 3 integers u r t; the first two values are the usage and recovery times for the person who is using machine 1,and t is the time when he/she first starts using the machine. The next 9 lines specify similar information for machines 2 through 10. All usage and recovery times are positive and ≤ 5 000 000 and all start times t satisfy |t| ≤ 5 000 000. You should assume that Jim is ready to use machine 1 at time 0.

 

输出
Display the time when Jim has finished his workout, i.e., the moment when he has finished his usage time on machine 10 for the third time (don’t count the last recovery time for that machine).

 

样例输入
5 5 3 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
2 2 1
8 3 0
1 1 0
1 1 0
1 1 0
1 1 0
1 1 0
1 1 0
1 1 0
1 1 0

 

样例输出
100

 

#include <bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define ld long double
using namespace std;
int n,k;
int ant,cnt;
int w[10],r[10],st[10];
int w0[10],r0[10];
int t;
int main()
{
    for(int i=0; i<10; i++)
    {
        scanf("%d %d",&w0[i],&r0[i]);
    }
    for(int i=0; i<10; i++)
    {
        scanf("%d %d %d",&w[i],&r[i],&st[i]);
    }
    for(int q=0; q<3; q++)
    {
        for(int i=0; i<10; i++)
        {
            if(t>=st[i])
            {
                int tmp=(t-st[i])%(w[i]+r[i]);
                if(tmp>=w[i])
                {
                    st[i]=max(t+w0[i],t+r[i]-(tmp-w[i]));
                    t+=w0[i];
                    t+=r0[i];
                }
                else
                {
                    t+=w[i]-tmp;
                    st[i]=max(t+w0[i],t+r[i]);
                    t+=w0[i];
                    t+=r0[i];
                }
            }
            else
            {
                t+=w0[i];
                if(t>st[i])
                {
                    st[i]=t;
                }
                t+=r0[i];
            }
            //cout<<t<<" "<<st[i]<<endl;
        }
    }
    t-=r0[9];
    printf("%d\n",t);
    return 0;
}

 

转载于:https://www.cnblogs.com/Diliiiii/p/9582747.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值