CodeForecs 476A【greedy】

A. Dreamoon and Stairs
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Dreamoon wants to climb up a stair of n steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer m.

What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?

Input
The single line contains two space separated integers n, m (0 < n ≤ 10000, 1 < m ≤ 10).

Output
Print a single integer — the minimal number of moves being a multiple of m. If there is no way he can climb satisfying condition print  - 1 instead.

Examples
inputCopy
10 2
output
6
inputCopy
3 5
output
-1
Note
For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}.

For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.

思路:一次可以上1个或者两个台阶。问上到n台阶的最小步数,同时步数应该满足是m的倍数。
贪心思想,为了达到最少步数,都两个两个的上,如果不满足倍数关系,再将一个两步分为两个一步,直至满足倍数关系。

#include<iostream>
using namespace std;
int main()
{
    int n,m;
    cin>>n>>m;
    int step = (n+1)/2;
    while(step<=n)
    {
        if(step%m==0)
        {
            cout<<step<<endl;
            break;
        }
        else step++;
    }
    if(step>n) cout<<-1<<endl;
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值