Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/arduino/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Dynamic 到达末端的最小跳跃次数动态编程MIG_Dynamic_Dynamic Programming - Fatal编程技术网

Dynamic 到达末端的最小跳跃次数动态编程MIG

Dynamic 到达末端的最小跳跃次数动态编程MIG,dynamic,dynamic-programming,Dynamic,Dynamic Programming,给定一个数组,从第一个元素开始验证到达终点需要多少步 示例:arr=[1,3,5,8,4,2,6,7,0,7,9] 1->3->8(这是最短路径) 3个步骤 到目前为止,我从极客那里得到了以下代码: def jumpCount(x, n): jumps = [0 for i in range(n)] if (n == 0) or (x[0] == 0): return float('inf') jumps[0] = 0 for i in range(1

给定一个数组,从第一个元素开始验证到达终点需要多少步

示例:arr=[1,3,5,8,4,2,6,7,0,7,9]

1->3->8(这是最短路径)

3个步骤

到目前为止,我从极客那里得到了以下代码:

def jumpCount(x, n): 
  jumps = [0 for i in range(n)] 

  if (n == 0) or (x[0] == 0): 
      return float('inf') 

  jumps[0] = 0


  for i in range(1, n): 
      jumps[i] = float('inf')   
      for j in range(i): 
          if (i <= j + x[j]) and (jumps[j] != float('inf')): 
              jumps[i] = min(jumps[i], jumps[j] + 1) 
              break                 
  return jumps[n-1]     

def jumps(x):
  n = len(x)
  return jumpCount(x,n) 

x = [1, 3, 5, 8, 4, 2, 6, 7, 0, 7, 9]

print(jumps(x))
def跳线计数(x,n):
跳跃=[0表示范围(n)内的i]
如果(n==0)或(x[0]==0):
返回浮点('inf')
跳转[0]=0
对于范围(1,n)内的i:
跳转[i]=浮点('inf')
对于范围(i)中的j:

如果(i基本思想是,您需要一个辅助结构来帮助您跟踪最小路径。这些类型的结构通常被称为“反向指针”(在我们的例子中,您可以称它们为“正向指针”,因为我们正在前进,duh).我的代码以递归方式解决问题,但也可以以迭代方式解决。策略如下:

jumps_vector = [ 1, 3, 5, 8, 4, 2, 6, 7, 0, 7, 9 ]

"""
fwdpointers holds the relative jump size to reach the minimum number of jumps
for every component of the original vector
"""
fwdpointers = {}

def jumps( start ):
    if start == len( jumps_vector ) - 1:
        # Reached the end
        return 0
    if start > len( jumps_vector ) - 1:
        # Cannot go through that path
        return math.inf
    if jumps_vector[ start ] == 0:
        # Cannot go through that path (infinite loop with itself)
        return math.inf

    # Get the minimum in a traditional way
    current_min = jumps( start + 1 )
    fwdpointers[ start ] = start + 1
    for i in range( 2, jumps_vector[ start ] + 1 ):
        aux_min = jumps( start + i )
        if current_min > aux_min:
            # Better path. Update minimum and fwdpointers
            current_min = aux_min
            # Store the (relative!) index of where I jump to
            fwdpointers[ start ] = i

    return 1 + current_min
在这种情况下,变量
fwdpointers
存储我跳转到的位置的相对索引。例如,
fwdpointers[0]=1
,因为我将跳转到相邻的数字,但是
fwdpointers[1]=2
,因为我将在下一次跳转时跳转两个数字

完成此操作后,只需在
main()
函数上稍微进行后处理即可:

if __name__ == "__main__":
    min_jumps = jumps( 0 )
    print( min_jumps )

    # Holds the index of the jump given such that
    # the sequence of jumps are the minimum
    i = 0
    # Remember that the contents of fwdpointers[ i ] are the relative indexes
    # of the jump, not the absolute ones
    print( fwdpointers[ 0 ] )
    while i in fwdpointers and i + fwdpointers[ i ] < len( jumps_vector ):
        print( jumps_vector[ i + fwdpointers[ i ] ] )
        # Get the index of where I jump to
        i += fwdpointers[ i ]
        jumped_to = jumps_vector[ i ]
results = {}
backpointers = {}
def jumps_iter():
    results[ 0 ] = 0
    backpointers[ 0 ] = -1
    for i in range( len( jumps_vector ) ):
        for j in range( 1, jumps_vector[ i ] + 1 ):
            if ( i + j ) in results:
                results[ i + j ] = min( results[ i ] + 1, results[ i + j ] )
                if results[ i + j ] == results[ i ] + 1:
                    # Update where I come from
                    backpointers[ i + j ] = i
            elif i + j < len( jumps_vector ):
                results[ i + j ] = results[ i ] + 1
                # Set where I come from
                backpointers[ i + j ] = i

    return results[ len( jumps_vector ) - 1 ]
i = len( jumps_vector ) - 1
print( jumps_vector[ len( jumps_vector ) - 1 ], end = " " )
while backpointers[ i ] >= 0:
    print( jumps_vector[ backpointers[ i ] ], end = " " )
    i = backpointers[ i ]
print()