Bomb dropping algorithm

后端 未结 30 830
挽巷
挽巷 2021-01-29 16:55

I have an n x m matrix consisting of non-negative integers. For example:

2 3 4 7 1
1 5 2 6 2
4 3 4 2 1
2 1 2 4 1
3 1 3 4 1
2 1 4 3 2
6 9 1 6 4


        
相关标签:
30条回答
  • 2021-01-29 17:50

    For updated question a simple greedy algorithm gives optimal result.

    Drop A[0,0] bombs to cell A[1,1], then drop A[1,0] bombs to cell A[2,1], and continue this process downwards. To clean bottom left corner, drop max(A[N-1,0], A[N-2,0], A[N-3,0]) bombs to the cell A[N-2,1]. This will completely clean up first 3 columns.

    With the same approach clean columns 3,4,5, then columns 6,7,8, etc.

    Unfortunately this does not help finding solution for the original problem.


    "Larger" problem (without "nonicreasing" constraint) may be proven to be NP-hard. Here is sketch of a proof.

    Suppose we have a planar graph of degree up to 3. Let's find minimum vertex cover for this graph. According to Wikipedia article this problem is NP-hard for planar graphs of degree up to 3. This could be proven by reduction from Planar 3SAT. And hardness of Planar 3SAT - by reduction from 3SAT. Both these proofs are presented in recent lectures in "Algorithmic Lower Bounds" by prof. Erik Demaine (lectures 7 and 9).

    If we split some edges of the original graph (left graph on the diagram), each one with even number of additional nodes, the resulting graph (right graph on the diagram) should have exactly the same minimum vertex cover for original vertices. Such transformation allows to align graph vertices to arbitrary positions on the grid.

    enter image description here

    If we place graph vertices only to even rows and columns (in such a way that no two edges incident to one vertex form an acute angle), insert "ones" wherever there is an edge, and insert "zeros" to other grid positions, we could use any solution for the original problem to find minimum vertex cover.

    0 讨论(0)
  • 2021-01-29 17:50

    All this problem boils down to is computing an edit distance. Simply calculate a variant of the Levenshtein distance between the given matrix and the zero matrix, where edits are replaced with bombings, using dynamic programming to store the distances between intermediate arrays. I suggest using a hash of the matrices as a key. In pseudo-Python:

    memo = {}
    
    def bomb(matrix,i,j):
        # bomb matrix at i,j
    
    def bombsRequired(matrix,i,j):
        # bombs required to zero matrix[i,j]
    
    def distance(m1, i, len1, m2, j, len2):
        key = hash(m1)
        if memo[key] != None: 
            return memo[key]
    
        if len1 == 0: return len2
        if len2 == 0: return len1
    
        cost = 0
        if m1 != m2: cost = m1[i,j]
        m = bomb(m1,i,j)
        dist = distance(str1,i+1,len1-1,str2,j+1,len2-1)+cost)
        memo[key] = dist
        return dist
    
    0 讨论(0)
  • 2021-01-29 17:54

    You could use state space planning. For example, using A* (or one of its variants) coupled with an heuristic f = g + h like this:

    • g: number of bombs dropped so far
    • h: sum over all values of the grid divided by 9 (which is the best result, meaning we have an admissible heuristics)
    0 讨论(0)
  • 2021-01-29 17:54

    I got 28 moves as well. I used two tests for the best next move: first the move producing the minimum sum for the board. Second, for equal sums, the move producing the maximum density, defined as:

    number-of-zeros / number-of-groups-of-zeros
    

    This is Haskell. "solve board" shows the engine's solution. You can play the game by typing "main", then enter a target point, "best" for a recommendation, or "quit" to quit.

    OUTPUT:
    *Main> solve board
    [(4,4),(3,6),(3,3),(2,2),(2,2),(4,6),(4,6),(2,6),(3,2),(4,2),(2,6),(3,3),(4,3),(2,6),(4,2),(4,6),(4,6),(3,6),(2,6),(2,6),(2,4),(2,4),(2,6),(3,6),(4,2),(4,2),(4,2),(4,2)]

    import Data.List
    import Data.List.Split
    import Data.Ord
    import Data.Function(on)
    
    board = [2,3,4,7,1,
             1,5,2,6,2,
             4,3,4,2,1,
             2,1,2,4,1,
             3,1,3,4,1,
             2,1,4,3,2,
             6,9,1,6,4]
    
    n = 5
    m = 7
    
    updateBoard board pt =
      let x = fst pt
          y = snd pt
          precedingLines = replicate ((y-2) * n) 0
          bomb = concat $ replicate (if y == 1
                                        then 2
                                        else min 3 (m+2-y)) (replicate (x-2) 0 
                                                             ++ (if x == 1 
                                                                    then [1,1]
                                                                    else replicate (min 3 (n+2-x)) 1)
                                                                    ++ replicate (n-(x+1)) 0)
      in zipWith (\a b -> max 0 (a-b)) board (precedingLines ++ bomb ++ repeat 0)
    
    showBoard board = 
      let top = "   " ++ (concat $ map (\x -> show x ++ ".") [1..n]) ++ "\n"
          chunks = chunksOf n board
      in putStrLn (top ++ showBoard' chunks "" 1)
           where showBoard' []     str count = str
                 showBoard' (x:xs) str count =
                   showBoard' xs (str ++ show count ++ "." ++ show x ++ "\n") (count+1)
    
    instances _ [] = 0
    instances x (y:ys)
      | x == y    = 1 + instances x ys
      | otherwise = instances x ys
    
    density a = 
      let numZeros = instances 0 a
          groupsOfZeros = filter (\x -> head x == 0) (group a)
      in if null groupsOfZeros then 0 else numZeros / fromIntegral (length groupsOfZeros)
    
    boardDensity board = sum (map density (chunksOf n board))
    
    moves = [(a,b) | a <- [2..n-1], b <- [2..m-1]]               
    
    bestMove board = 
      let lowestSumMoves = take 1 $ groupBy ((==) `on` snd) 
                                  $ sortBy (comparing snd) (map (\x -> (x, sum $ updateBoard board x)) (moves))
      in if null lowestSumMoves
            then (0,0)
            else let lowestSumMoves' = map (\x -> fst x) (head lowestSumMoves) 
                 in fst $ head $ reverse $ sortBy (comparing snd) 
                    (map (\x -> (x, boardDensity $ updateBoard board x)) (lowestSumMoves'))   
    
    solve board = solve' board [] where
      solve' board result
        | sum board == 0 = result
        | otherwise      = 
            let best = bestMove board 
            in solve' (updateBoard board best) (result ++ [best])
    
    main :: IO ()
    main = mainLoop board where
      mainLoop board = do 
        putStrLn ""
        showBoard board
        putStr "Pt: "
        a <- getLine
        case a of 
          "quit"    -> do putStrLn ""
                          return ()
          "best"    -> do putStrLn (show $ bestMove board)
                          mainLoop board
          otherwise -> let ws = splitOn "," a
                           pt = (read (head ws), read (last ws))
                       in do mainLoop (updateBoard board pt)
    
    0 讨论(0)
  • 2021-01-29 17:55

    Your new problem, with the nondecreasing values across rows, is quite easy to solve.

    Observe that the left column contains the highest numbers. Therefore, any optimal solution must first reduce this column to zero. Thus, we can perform a 1-D bombing run over this column, reducing every element in it to zero. We let the bombs fall on the second column so they do maximum damage. There are many posts here dealing with the 1D case, I think, so I feel safe in skipping that case. (If you want me to describe it, I can.). Because of the decreasing property, the three leftmost columns will all be reduced to zero. But, we will provably use a minimum number of bombs here because the left column must be zeroed.

    Now, once the left column is zeroed, we just trim off the three leftmost columns that are now zeroed and repeat with the now-reduced matrix. This must give us an optimal solution since at each stage we use a provably minimum number of bombs.

    0 讨论(0)
  • 2021-01-29 17:57

    Here is a solution that generalizes the good properties of the corners.

    Let's assume that we could find a perfect drop point for a given field, that is, a best way to decrease the value in it. Then to find the minimum number of bombs to be dropped, a first draft of an algorithm could be (the code is copy-pasted from a ruby implementation):

    dropped_bomb_count = 0
    while there_are_cells_with_non_zero_count_left
      coordinates = choose_a_perfect_drop_point
      drop_bomb(coordinates)
      dropped_bomb_count += 1
    end
    return dropped_bomb_count
    

    The challenge is choose_a_perfect_drop_point. First, let's define what a perfect drop point is.

    • A drop point for (x, y) decreases the value in (x, y). It may also decrease values in other cells.
    • A drop point a for (x, y) is better than a drop point b for (x, y) if it decreases the values in a proper superset of the cells that b decreases.
    • A drop point is maximal if there is no other better drop point.
    • Two drop points for (x, y) are equivalent if they decrease the same set of cells.
    • A drop point for (x, y) is perfect if it is equivalent to all maximal drop points for (x, y).

    If there is a perfect drop point for (x, y), you cannot decrease the value at (x, y) more effectively than to drop a bomb on one of the perfect drop points for (x, y).

    A perfect drop point for a given field is a perfect drop point for any of its cells.

    Here are few examples:

    1 0 1 0 0
    0 0 0 0 0
    1 0 0 0 0
    0 0 0 0 0
    0 0 0 0 0
    

    The perfect drop point for the cell (0, 0) (zero-based index) is (1, 1). All other drop points for (1, 1), that is (0, 0), (0, 1), and (1, 0), decrease less cells.

    0 0 0 0 0
    0 0 0 0 0
    0 0 1 0 0
    0 0 0 0 0
    0 0 0 0 0
    

    A perfect drop point for the cell (2, 2) (zero-based index) is (2, 2), and also all the surrounding cells (1, 1), (1, 2), (1, 3), (2, 1), (2, 3), (3, 1), (3, 2), and (3, 3).

    0 0 0 0 1
    0 0 0 0 0
    0 0 1 0 0
    0 0 0 0 0
    0 0 0 0 0
    

    a perfect drop points for the cell (2, 2) is (3, 1): It decreases the value in (2, 2), and the value in (4, 0). All other drop points for (2, 2) are not maximal, as they decrease one cell less. The perfect drop point for (2, 2) is also the perfect drop point for (4, 0), and it is the only perfect drop point for the field. It leads to the perfect solution for this field (one bomb drop).

    1 0 0 0 0
    0 0 0 0 0
    0 0 1 0 0
    0 0 0 0 0
    1 0 0 0 0
    

    There is no perfect drop point for (2, 2): Both (1, 1) and (1, 3) decrease (2, 2) and another cell (they are maximal drop points for (2, 2)), but they are not equivalent. However, (1, 1) is a perfect drop point for (0, 0), and (1, 3) is a perfect drop point for (0, 4).

    With that definition of perfect drop points and a certain order of checks, I get the following result for the example in the question:

    Drop bomb on 1, 1
    Drop bomb on 1, 1
    Drop bomb on 1, 5
    Drop bomb on 1, 5
    Drop bomb on 1, 5
    Drop bomb on 1, 6
    Drop bomb on 1, 2
    Drop bomb on 1, 2
    Drop bomb on 0, 6
    Drop bomb on 0, 6
    Drop bomb on 2, 1
    Drop bomb on 2, 5
    Drop bomb on 2, 5
    Drop bomb on 2, 5
    Drop bomb on 3, 1
    Drop bomb on 3, 0
    Drop bomb on 3, 0
    Drop bomb on 3, 0
    Drop bomb on 3, 0
    Drop bomb on 3, 0
    Drop bomb on 3, 4
    Drop bomb on 3, 4
    Drop bomb on 3, 3
    Drop bomb on 3, 3
    Drop bomb on 3, 6
    Drop bomb on 3, 6
    Drop bomb on 3, 6
    Drop bomb on 4, 6
    28
    

    However, the algorithm only works if there is at least one perfect drop point after each step. It is possible to construct examples where there are no perfect drop points:

    0 1 1 0
    1 0 0 1
    1 0 0 1
    0 1 1 0
    

    For these cases, we can modify the algorithm so that instead of a perfect drop point, we choose a coordinate with a minimal choice of maximal drop points, then calculate the minimum for each choice. In the case above, all cells with values have two maximal drop points. For example, (0, 1) has the maximal drop points (1, 1) and (1, 2). Choosing either one and then calcualting the minimum leads to this result:

    Drop bomb on 1, 1
    Drop bomb on 2, 2
    Drop bomb on 1, 2
    Drop bomb on 2, 1
    2
    
    0 讨论(0)
提交回复
热议问题