AtCoder Go Home

2 篇文章 0 订阅

C - Go Home


Time limit : 2sec / Memory limit : 256MB

Score : 200 points

Problem Statement

There is a kangaroo at coordinate 0 on an infinite number line that runs from left to right, at time 0. During the period between time i1 and time i, the kangaroo can either stay at his position, or perform a jump of length exactly i to the left or to the right. That is, if his coordinate at time i1 is x, he can be at coordinate xi,x or x+i at time i. The kangaroo's nest is at coordinate X, and he wants to travel to coordinate X as fast as possible. Find the earliest possible time to reach coordinate X.

Constraints

  • X is an integer.
  • 1X109
题意就是:起点在数轴的0点上,第i个时间可以走长度i,可以向左也可以向右。为要到达x位置,最少需要的时间。

思路:题解很简单一句话:The answer is the minimum t such that 1 + 2 + ... + t ≥ X.比赛时我也是按照这个思路写的,什么意思呢?

如果前t分钟一直向左走,加起来的路程如果恰好等于x,那一定就是时间t最短。

可如果超过了呢?超过的距离是d,那么满足        d < sum(t+1) - sum(t),d就是[0, t]之间的数,0的情况说了没问题。

不是0呢,不论多了几,肯定是之前出现的某个距离,根据d的范围就知道了,那就之前那个距离的时候不走,这多出

的距离不就可以减去了吗。所以这样答案也是成立的。这样就对了。

#include <bits/stdc++.h>
const int N = 44721;
using namespace std;
int sum[N];
int main()
{
 
 
    for (int i = 1; i <= N; i++)
    {
        sum[i] = sum[i-1] + i;
    }
    int x;
    while (~scanf("%d", &x))
    {
        int loc = lower_bound(sum, sum + N, x) - sum;
  
        printf("%d\n", loc);
    }   
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值