CF contest/382/B. Number Busters

题解:

   设t 分钟后:

    c'=c-t;

   a'=a- (x*t-b)/w; 

    c'<=a';

    整理出来 t>= (a*w-cw+b)/(x-w);

   注意题目条件  x<w;如果没有则要考虑x==w ,x>w的情况;

      关于这个 a'=a- (x*t-b)/w; 一开始以为大家一看公式就明白,所以没有解释,抱歉~

       t分钟的后, Arthur 一共减去了x*t,对吧?  x*t减去最初的b,剩下的是需要改变a值来继续游戏的。所以看x*t-b 可以分成多少个w  ,(w是a-1 转化来的)  因此a的改变量就是(x*t-b)/w;

       不知道是否解释清楚,还有疑问,请留言^.^。


题目: Arthur took a group of four integers a, b, w, x (0 ≤ b < w, 0 < x < w) and Alexander took integer с. Arthur and Alexander use distinct approaches to number bustings. Alexander is just a regular guy. Each second, he subtracts one from his number. In other words, he performs the assignment: c = c - 1. Arthur is a sophisticated guy. Each second Arthur performs a complex operation, described as follows: if b ≥ x, perform the assignment b = b - x, if b < x, then perform two consecutive assignments a = a - 1; b = w - (x - b).

You've got numbers a, b, w, x, c. Determine when Alexander gets ahead of Arthur if both guys start performing the operations at the same time. Assume that Alexander got ahead of Arthur if c ≤ a.

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
long long a,b,w,x,c;//  比赛时候一激动竟然定义成int;脑残!
long long ans;
void deal()
{
        if(c<=a) {ans=0;return;}
        long long  pt=(1ll*a*w-1ll*w*c+b)/(x-w);
        ans=pt;
        if(abs(1ll*pt*(x-w))<abs(1ll*a*w-1ll*w*c+b))ans++;
        return;
}
int main()
{
// freopen("in.txt","r",stdin);

 while(~scanf("%I64d%I64d%I64d%I64d%I64d",&a,&b,&w,&x,&c))
 {
   deal();
   printf("%I64d\n",ans);
 }

 return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 10
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值