codeforces 1455 B题

codeforces 1455 B
2021-01-14 打卡题,随便在codeforces上找了一道

B. Jumps
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output

题目描述:

You are standing on the OX-axis at point 0 and you want to move to an integer point 𝑥>0.

You can make several jumps. Suppose you’re currently at point 𝑦 (𝑦 may be negative) and jump for the 𝑘-th time. You can:

either jump to the point 𝑦+𝑘
or jump to the point 𝑦−1.
What is the minimum number of jumps you need to reach the point 𝑥?

Input
The first line contains a single integer 𝑡 (1≤𝑡≤1000) — the number of test cases.

The first and only line of each test case contains the single integer 𝑥 (1≤𝑥≤106) — the destination point.

Output
For each test case, print the single integer — the minimum number of jumps to reach 𝑥. It can be proved that we can reach any integer point 𝑥.

Example:

inputCopy
5
1
2
3
4
5
outputCopy
1
3
2
3
4

Note:
In the first test case 𝑥=1, so you need only one jump: the 1-st jump from 0 to 0+1=1.

In the second test case 𝑥=2. You need at least three jumps:

the 1-st jump from 0 to 0+1=1;
the 2-nd jump from 1 to 1+2=3;
the 3-rd jump from 3 to 3−1=2;
Two jumps are not enough because these are the only possible variants:

the 1-st jump as −1 and the 2-nd one as −1 — you’ll reach 0−1−1=−2;
the 1-st jump as −1 and the 2-nd one as +2 — you’ll reach 0−1+2=1;
the 1-st jump as +1 and the 2-nd one as −1 — you’ll reach 0+1−1=0;
the 1-st jump as +1 and the 2-nd one as +2 — you’ll reach 0+1+2=3;
In the third test case, you need two jumps: the 1-st one as +1 and the 2-nd one as +2, so 0+1+2=3.

In the fourth test case, you need three jumps: the 1-st one as −1, the 2-nd one as +2 and the 3-rd one as +3, so 0−1+2+3=4.

思路分析:
这个题,画出对应的树,从根结点开始往下依次计算,画到大概5-6层的时候,规律已经很明显了,建议自己去找一找。

代码实现:

#include <iostream>
#include <cstdio>
 
using namespace std;
 
int main() {
 
    int t;
    scanf("%d",&t);
    while(t--) {
        int n;
        scanf("%d",&n);
        int sum = 0;
        int i;
        for(i=1;i<=n;i++) {
            sum += i;
            if(sum >= n)
                break;
        }
        if(n != sum-1)
            printf("%d\n",i);
        else
            printf("%d\n",i+1);
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值