编程介的小学生 2019-06-26 18:56 采纳率: 20.5%
浏览 131

计算网格的值搜索问题,怎么采用C语言的程序的设计的编写的代码的格式的实现的过程

Problem Description
In the game "Gem Craft", we create gems in the item bar.
There are N grids in the item bar, each grid can only accomodate one gem.
Each gem has its level.
When the level of a gem upgrade by 1, the power of the gem will be doubled.
The key to win the game is to get a high level gem.
Gems with level 0 are available directly.
To get gems with higher level, the only way is to combine low level gems.
Suppose we have 2*N gems with level K now, they can be turned into N gems with level (K+1) afert a combining operation.
Your task is to get at least one gem with level M in minimum steps of operation.
For one step of operation, you can do one of the following two things:
(1) Get gems with level 0 directly, filling up the empty grids.
(2) Combine even number of gems with same level.

Input
The input contain some test cases.
Each test case contains two integers N and M (1<=N<=36, 0<=M<=20).
The input ends when N=M=0, this test case doesn't need processing.

Output
For each test case, output one line.
The line contains only one integer, the minimum steps of operation.
If there is no solution to get a gem with level M, output -1 instead.

Sample Input
4 3
8 3
0 0

Sample Output
9
4

Hint
We use dots to present empty grid, use number to present the level of a gem.

The first sample can be solved like this:

**** Initial
0000 Get level 0 gems
**11 Combine level 0 gems
***2 Combine level 1 gems
0002 Get level 0 gems
012 Combine level 0 gems
0012 Get level 0 gems
*112 Combine level 0 gems
**22 Combine level 1 gems
*
*3 Combine level 2 gems

In total of 9 steps of operation.

The second sample can be solved like this:

******** Initial
00000000 Get level 0 gems
****1111 Combine level 0 gems
******22 Combine level 1 gems
*******3 Combine level 2 gems

It only takes 4 steps of operation.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 matlab yalmip kkt 双层优化问题
    • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
    • ¥88 实在没有想法,需要个思路
    • ¥15 MATLAB报错输入参数太多
    • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
    • ¥15 有赏,i卡绘世画不出
    • ¥15 如何用stata画出文献中常见的安慰剂检验图
    • ¥15 c语言链表结构体数据插入
    • ¥40 使用MATLAB解答线性代数问题
    • ¥15 COCOS的问题COCOS的问题