Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bubble Breaker Game Solver better than greedy?

For a mental exercise I decided to try and solve the bubble breaker game found on many cell phones as well as an example here:Bubble Break Game

  • The random (N,M,C) board consists N rows x M columns with C colors
  • The goal is to get the highest score by picking the sequence of bubble groups that ultimately leads to the highest score
  • A bubble group is 2 or more bubbles of the same color that are adjacent to each other in either x or y direction. Diagonals do not count
  • When a group is picked, the bubbles disappear, any holes are filled with bubbles from above first, ie shift down, then any holes are filled by shifting right
  • A bubble group score = n * (n - 1) where n is the number of bubbles in the bubble group

The first algorithm is a simple exhaustive recursive algorithm which explores going through the board row by row and column by column picking bubble groups. Once the bubble group is picked, we create a new board and try to solve that board, recursively descending down

Some of the ideas I am using include normalized memoization. Once a board is solved we store the board and the best score in a memoization table.

I create a prototype in python which shows a (2,15,5) board takes 8859 boards to solve in about 3 seconds. A (3,15,5) board takes 12,384,726 boards in 50 minutes on a server. The solver rate is ~3k-4k boards/sec and gradually decreases as the memoization search takes longer. Memoization table grows to 5,692,482 boards, and hits 6,713,566 times.

What other approaches could yield high scores besides the exhaustive search?

I don't seen any obvious way to divide and conquer. But trending towards larger and larger bubbles groups seems to be one approach

Thanks to David Locke for posting the paper link which talks above a window solver which uses a constant-depth lookahead heuristic.

like image 845
Gregory Avatar asked Oct 08 '09 23:10

Gregory


4 Answers

According to this paper, determining if you can empty the board (which is related to the problem you want to solve) is NP-Complete. That doesn't mean that you won't be able to find a good algorithm, it just means that you likely won't find an efficient one.

like image 92
David Locke Avatar answered Sep 29 '22 22:09

David Locke


I'm thinking you could try a branch and bound search with the following idea:

  1. Given a state of the game S, you branch on S by breaking it up in m sets Si where each Si is the state after taking a legal move of all m legal moves given the state S

  2. You need two functions U(S) and L(S) that compute a lower and upper bound respectively of a given state S.

    For the U(S) function I'm thinking calculate the score that you would get if you were able to freely shuffle K bubbles in the board (each move) and arrange the blocks in such a way that would result in the highest score, where K is a value you choose yourself. When your calculating U(S) for a given S it should go quicker if you choose higher K (the conditions are relaxed) so choosing the value of K will be a trade of for quickness of finding U(S) and quality (how tight an upper bound U(S) is.)

    For the L(S) function calculate the score that you would get if you simply randomly kept click until you got to a state that could not be solved any further. You can do this several times taking the highest lower bound that you get.

Once you have these two functions you can apply standard Bound and Branch search. Note that the speed of your search is going to greatly depend on how tight your Upper Bound is and how tight your Lower Bound is.

like image 34
ldog Avatar answered Sep 30 '22 00:09

ldog


To get a faster solution than exhaustive search, I think what you want is probably dynamic programming. In dynamic programming, you find some sort of "step" that takes you possibly closer to your solution, and keep track of the results of each step in a big matrix. Then, once you have filled in the matrix, you can find the best result, and then work backward to get a path through the matrix that leads to the best result. The matrix is effectively a form of memoization.

Dynamic programming is discussed in The Algorithm Design Manual but there is also plenty of discussion of it on the web. Here's a good intro: http://20bits.com/articles/introduction-to-dynamic-programming/

I'm not sure exactly what the "step" is for this problem. Perhaps you could make a scoring metric for a board that simply sums the points for each of the bubble groups, and then record this score as you try popping balloons? Good steps would tend to cause bubble groups to coalesce, improving the score, and bad steps would break up bubble groups, making the score worse.

like image 27
steveha Avatar answered Sep 29 '22 22:09

steveha


You can translate this problem into problem of searching shortest path on graph. http://en.wikipedia.org/wiki/Shortest_path_problem

I would try whit A* and heuristics would include number of islands.

like image 24
Luka Rahne Avatar answered Sep 29 '22 23:09

Luka Rahne