ZOJ - 4056 - Press the Button (模拟)

30 篇文章 0 订阅
17 篇文章 0 订阅

题意:

问有效press次数,有效是指灯亮的时候有效

思路:

模拟时间器

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll a,b,c,d,t, v;
ll shinetime_;
long long cnt;
int main()
{
    int T;
    cin>>T;
    while(T--)
    {
        ll nowb = 0,nowd = 0;
        cnt = 0;
        cin>>a>>b>>c>>d>>v>>t;
            shinetime_ = v;
        cnt += (b + d - 1);
        while(nowb <= t || nowd <= t)
        {
            if(nowb + a <= nowd + c)
            {
                nowb += a;
                if(nowb > t) continue;
                if(nowb <= shinetime_)
                {
                    cnt += b;
                }
                else
                {
                    cnt += (b - 1);
                }
                shinetime_ = nowb + v;

            }
            else
            {
                nowd += c;
                if(nowd > t) continue;
                if(nowd <= shinetime_)
                {
                    cnt += d;
                }
                else
                {
                    cnt += (d - 1);
                }
                shinetime_ =  nowd + v;
            }
        }
        cout<<cnt<<endl;
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值