CodeForces--Platforms

Description

In one one-dimensional world there are n platforms. Platform with index k (platforms are numbered from 1) is a segment with coordinates [(k - 1)m, (k - 1)m + l], and l < m. Grasshopper Bob starts to jump along the platforms from point 0, with each jump he moves exactly d units right. Find out the coordinate of the point, where Bob will fall down. The grasshopper falls down, if he finds himself not on the platform, but if he finds himself on the edge of the platform, he doesn't fall down.

Input

The first input line contains 4 integer numbers ndml (1 ≤ n, d, m, l ≤ 106, l < m) — respectively: amount of platforms, length of the grasshopper Bob's jump, and numbers m and l needed to find coordinates of the k-th platform: [(k - 1)m, (k - 1)m + l].

Output

Output the coordinates of the point, where the grosshopper will fall down. Don't forget that if Bob finds himself on the platform edge, he doesn't fall down.

Sample Input

Input
2 2 5 3
Output
4
Input
5 4 11 8
Output
20

题目大意:输入四个数n,d,m,l。给你一个一维坐标,有n个平台,有个东西在平台上跳,d为跳的间隔,m为区间,l代表平台的长度,求那个东西跳落平台的一维坐标。

第16组数据超时了快哭了快哭了

#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
    __int64 n,d,m,l,k,j,start,ending;
    while(cin>>n>>d>>m>>l)
    {
        j=ending=0;
        __int64 dlen=m-l;//平台与平台的间距
        __int64 slen=n*l+(n-1)*dlen;//到最后一个平台的距离
        bool flag=true;
        while(ending<=slen)
        {
            start=j*m;//第j+1个平台的左边坐标
            ending=(j+1)*m-dlen;//第j+1个平台的右边坐标
            j++;
            for(k=0; k<=slen/d; k++)
            {
                if(k*d>ending && k*d< ending+ dlen)//落下的坐标在平台与平台之间
                {
                    printf("%I64d\n",k*d);
                    flag=false;
                    break;
                }
                if(k*d>ending)//下落坐标在最后一个平台之外
                    break;
            }
            if(!flag)
                break;
        }
        if(flag)
          printf("%I64d\n",k*d);
    }
    return 0;
}
真的想不出了,就百度了一下,看了之后好简单
#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
    __int64 n,d,m,l,right,left,step;
    while(scanf("%I64d%I64d%I64d%I64d",&n,&d,&m,&l)!=EOF)
    {
        for(int i=1; i<=n; i++)
        {
            left=(i-1)*m;//第i个平台的左边坐标
            right=left+l;//第i个平台的右边坐标
            step=right/d+1;//跳出第i个平台的步数
            if(step*d<left+m)//跳出平台的步数小于i+1平台的左边坐标就代表落下平台了。
               break;
        }
        printf("%I64d\n",step*d);
    }
    return 0;
}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值