In the game 2048 what is the biggest tile that can be achieved, assuming a player playing optimally and tile spawning at the most optimal place?
Naively I would say that the biggest achievable tile is 65536 * 2 = 131072
because it seems that the best possible board is the following:
4 4 8 16
256 128 64 32
512 1024 2048 4096
65536 32768 16384 8192
But I'm not sure if
(sorry if I should have asked on gaming.stackexchange, but this is more of a CS question than a gaming one afaict)
The resulting tile cannot merge with another tile again in the same move. Higher-scoring tiles emit a soft glow; the highest possible tile is 131,072.
Solving this game is an interesting problem because it has a random component. It's impossible to correctly predict not only where each new tile will be placed, but whether it will be a “2” or a “4”. As such, it is impossible to have an algorithm that will correctly solve the puzzle every time.
you haven't finished yet with the board you propose: you can slide to the right, going all the way down and obtaining 131072. So your analysis was correct although you missed a spot:
This will be your final board:
4 8 16 32
512 256 128 64
1024 2048 4096 8192
131072 65536 32768 16384
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With