编程介的小学生 2019-02-25 16:52 采纳率: 20.5%
浏览 165

网格的高度的计算的方式,采用C语言编程的实现的思路怎么实现

Problem Description
Little White likes exploring. One day she finds a maze which has a shape of a rectangle of size n*m. The coordinate of the entrance is (1,1) and the precious deposits are place at (n,m).Except for these two positions, other grids' height change from time to time. At beginning,they all have the maximum height, and every second their height change by 1(increase or decrease). The grid cannot be stayed on if its height is smaller than min. Little White can jump upwards at most high meters and downwards low meters at a time. Every time, she can choose to go to the adjacent grids(up, down, left or right) or stay at the same grid. There is a lamp at grid (n,m) with height 10. Every time she jumps from i to j, she wishes to see the light of the lamp the moment she gets onto j. Little White has a height 10 and 100 units of power,which decrease by 1 unit for every second. It takes one second for her to jump from one grid to another, and the grids' height always change after her jump. She will always be at the center of the grids.

Input
For each data set:
The first line give five integers, n, m, min, high, low(2<=n,m<=35,min>=0,high>=0,low>=0).
The next n lines, each has m integers, indicating the grids' initial and maximum height.The height of the grid first decreases, then begins to increase when it gets to 0, and then begins to decrease when it gets maximum...

Output
Print the minimum time required to get to the precious deposits. If she cannot get to the destination, print -1 instead.

Sample Input
5 5 0 1 1
18 20 20 20 20
18 20 20 20 20
18 20 18 18 18
18 20 18 20 18
18 18 18 20 7
5 5 7 5 8
23 16 3 2 28
26 8 1 16 19
16 17 26 12 4
30 1 3 3 4
14 4 7 28 12

Sample Output
25
-1

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 微信公众号自制会员卡没有收款渠道啊
    • ¥15 stable diffusion
    • ¥100 Jenkins自动化部署—悬赏100元
    • ¥15 关于#python#的问题:求帮写python代码
    • ¥20 MATLAB画图图形出现上下震荡的线条
    • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
    • ¥15 perl MISA分析p3_in脚本出错
    • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
    • ¥15 ubuntu虚拟机打包apk错误
    • ¥199 rust编程架构设计的方案 有偿