Game complexity

Combinatorial game theory has several ways of measuring game complexity. This article describes five of them: state-space complexity, game tree size, decision complexity, game-tree complexity, and computational complexity.

Measures of game complexity

State-space complexity

The state-space complexity of a game is the number of legal game positions reachable from the initial position of the game.[1]

When this is too hard to calculate, an upper bound can often be computed by including illegal positions or positions that can never arise in the course of a game.

Game tree size

The game tree size is the total number of possible games that can be played: the number of leaf nodes in the game tree rooted at the game's initial position.

The game tree is typically vastly larger than the state space because the same positions can occur in many games by making moves in a different order (for example, in a tic-tac-toe game with two X and one O on the board, this position could have been reached in two different ways depending on where the first X was placed). An upper bound for the size of the game tree can sometimes be computed by simplifying the game in a way that only increases the size of the game tree (for example, by allowing illegal moves) until it becomes tractable.

However, for games where the number of moves is not limited (for example by the size of the board, or by a rule about repetition of position) the game tree is infinite.

Decision trees

The next two measures use the idea of a decision tree, which is a subtree of the game tree, with each position labelled with "player A wins", "player B wins" or "drawn", if that position can be proved to have that value (assuming best play by both sides) by examining only other positions in the graph. (Terminal positions can be labelled directly; a position with player A to move can be labelled "player A wins" if any successor position is a win for A, or labelled "player B wins" if all successor positions are wins for B, or labelled "draw" if all successor positions are either drawn or wins for B. And correspondingly for positions with B to move.)

Decision complexity

Decision complexity of a game is the number of leaf nodes in the smallest decision tree that establishes the value of the initial position.

Game-tree complexity

The game-tree complexity of a game is the number of leaf nodes in the smallest full-width decision tree that establishes the value of the initial position.[1] A full-width tree includes all nodes at each depth.

This is an estimate of the number of positions we would have to evaluate in a minimax search to determine the value of the initial position.

It's hard even to estimate the game-tree complexity, but for some games a reasonable lower bound can be given by raising the game's average branching factor to the power of the number of plies in an average game, or:

Computational complexity

The computational complexity of a game describes the asymptotic difficulty of a game as it grows arbitrarily large, expressed in big O notation or as membership in a complexity class. This concept doesn't apply to particular games, but rather to games that have been generalized so they can be made arbitrarily large, typically by playing them on an n-by-n board. (From the point of view of computational complexity a game on a fixed size of board is a finite problem that can be solved in O(1), for example by a look-up table from positions to the best move in each position.)

The asymptotic complexity is defined by the most efficient (in terms of whatever computational resource one is considering) algorithm for solving the game; the most common complexity measure (computation time) is always lower-bounded by the logarithm of the asymptotic state-space complexity, since a solution algorithm must work for every possible state of the game. It will be upper-bounded by the complexities of each individual algorithm for the family of games. Similar remarks apply to the second-most commonly used complexity measure, the amount of space or computer memory used by the computation. It is not obvious that there is any lower bound on the space complexity for a typical game, because the algorithm need not store game states; however many games of interest are known to be PSPACE-hard, and it follows that their space complexity will be lower-bounded by the logarithm of the asymptotic state-space complexity as well (technically the bound is only a polynomial in this quantity; but it is usually known to be linear).

Example: tic-tac-toe (noughts and crosses)

For tic-tac-toe, a simple upper bound for the size of the state space is 39 = 19,683. (There are three states for each cell and nine cells.) This count includes many illegal positions, such as a position with five crosses and no noughts, or a position in which both players have a row of three. A more careful count, removing these illegal positions, gives 5,478. And when rotations and reflections of positions are considered identical, there are only 765 essentially different positions.

A simple upper bound for the size of the game tree is 9! = 362,880. (There are nine positions for the first move, eight for the second, and so on.) This includes illegal games that continue after one side has won. A more careful count gives 255,168 possible games. When rotations and reflections of positions are considered the same, there are only 26,830 possible games.

The computational complexity of tic-tac-toe depends on how it is generalized. A natural generalization is to m,n,k-games: played on an m by n board with winner being the first player to get k in a row. It is immediately clear that this game can be solved in DSPACE(mn) by searching the entire game tree. This places it in the important complexity class PSPACE. With some more work it can be shown to be PSPACE-complete.[2]

Complexities of some well-known games

Due to the large size of game complexities, this table gives the ceiling of their logarithm to base 10. (In other words, the number of digits). All of the following numbers should be considered with caution: seemingly-minor changes to the rules of a game can change the numbers (which are often rough estimates anyway) by tremendous factors, which might easily be much greater than the numbers shown.

Game Board size

(positions)

State-space complexity

(as log to base 10)

Game-tree complexity

(as log to base 10)

Average game length

(plies)

Branching factor Ref Complexity class of suitable generalized game
Tic-tac-toe 9 3 5 9 4 PSPACE-complete[2]
Sim 15 3 8 14 3.7 PSPACE-complete[3]
Pentominoes 64 12 18 10 75 [4][5] ?, but in PSPACE
Kalah [6] 14 13 18 [4] Generalization is unclear
Connect Four 42 13 21 36 4 [1][7] ?, but in PSPACE
Domineering (8 × 8) 64 15 27 30 8 [4] ?, but in PSPACE; in P for certain dimensions[8]
Congkak 14 15 33 [4]
English draughts (8x8) (checkers) 32 20 or 18 31 70 2.8 [1][9] EXPTIME-complete[10]
Awari[11] 12 12 32 60 3.5 [1] Generalization is unclear
Qubic 64 30 34 20 54.2 [1] PSPACE-complete[2]
Fanorona 45 21 46 44 11 [12] ?, but in EXPTIME
Nine Men's Morris 24 10 50 50 10 [1] ?, but in EXPTIME
International draughts (10x10) 50 30 54 90 4 [1] EXPTIME-complete[10]
Chinese checkers (2 sets) 121 23 [13] EXPTIME-complete [14]
Chinese checkers (6 sets) 121 78 [13] EXPTIME-complete [14]
Lines of Action 64 23 64 44 29 [15] ?, but in EXPTIME
Reversi (Othello) 64 28 58 58 10 [1] PSPACE-complete[16]
OnTop (2p base game) 72 88 62 31 23.77 [17]
Hex (11x11) 121 57 98 40 280 [4] PSPACE-complete[18]
Gomoku (15x15, freestyle) 225 105 70 30 210 [1] PSPACE-complete[2]
Go (9x9) 81 38 80 45 [1][19] EXPTIME-complete[20]
Chess 64 47 123 80 35 [21] EXPTIME-complete (without 50-move drawing rule) [22]
Connect6 361 172 140 30 46000 [23] PSPACE-complete[24]
Backgammon 28 20 144 55 250 [25] Generalization is unclear
Xiangqi 90 40 150 95 38 [1][26][27] ?, believed to be EXPTIME-complete
Abalone 61 25 154 87 60 [28][29] PSPACE-hard, and in EXPTIME
Havannah 271 127 157 66 240 [4][30] PSPACE-complete[31]
Twixt 572 140 159 60 452 [32]
Janggi 90 44 160 100 40 [27] ?, believed to be EXPTIME-complete
Quoridor 81 42 162 91 60 [33] ?, but in PSPACE
Carcassonne (2p base game) 72 >40 195 71 55 [34] Generalization is unclear
Amazons (10x10) 100 40 212 84 374 or 299[35] [36][37] PSPACE-complete[38]
Go (13x13) 169 79 168 90 [1][19] EXPTIME-complete[20]
Shogi 81 71 226 115 92 [26][39] EXPTIME-complete[40]
Arimaa 64 43 402 92 17281 [41][42][43] ?, but in EXPTIME
Go (19x19) 361 170 360 150 250 [1][19][44] EXPTIME-complete[20]
Stratego 92 115 535 381 21.739 [45]
Double dummy bridge[46] (52) <17 <40 52 5.6
Bejeweled and Candy Crush (8x8) 64 <50 [47] NP-hard

1See also

Notes and references

  1. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Victor Allis (1994). Searching for Solutions in Games and Artificial Intelligence (PDF) (Ph.D. thesis). University of Limburg, Maastricht, The Netherlands. ISBN 90-900748-8-0.
  2. 1 2 3 4 Stefan Reisch (1980). "Gobang ist PSPACE-vollstandig (Gomoku is PSPACE-complete)". Acta Informatica. 13: 5966. doi:10.1007/bf00288536.
  3. Wolfgang Slany: The Complexity of Graph Ramsey Games
  4. 1 2 3 4 5 6 H. J. van den Herik; J. W. H. M. Uiterwijk; J. van Rijswijck (2002). "Games solved: Now and in the future". Artificial Intelligence. 134 (1–2): 277–311. doi:10.1016/S0004-3702(01)00152-7.
  5. Hilarie K. Orman: Pentominoes: A First Player Win in Games of no chance, MSRI Publications – Volume 29, 1996, pages 339-344. Online: pdf.
  6. See van den Herik et al for rules.
  7. John Tromp (2010). "John's Connect Four Playground".
  8. Michael Lachmann; Cristopher Moore; Ivan Rapaport (July 2000). "Who wins domineering on rectangular boards?". MSRI Combinatorial Game Theory Research Workshop.
  9. Jonathan Schaeffer; et al. (July 6, 2007). "Checkers is Solved". Science. 317 (5844): 1518–1522. doi:10.1126/science.1144079. PMID 17641166.
  10. 1 2 J. M. Robson (1984). "N by N checkers is Exptime complete". SIAM Journal on Computing. 13 (2): 252–267. doi:10.1137/0213018.
  11. See Allis 1994 for rules
  12. M.P.D. Schadd; M.H.M. Winands; J.W.H.M. Uiterwijk; H.J. van den Herik; M.H.J. Bergsma (2008). "Best Play in Fanorona leads to Draw" (PDF). New Mathematics and Natural Computation. 4 (3): 369–387. doi:10.1142/S1793005708001124.
  13. 1 2 G.I. Bell (2009). "The Shortest Game of Chinese Checkers and Related Problems". Integers. arXiv:0803.1245Freely accessible.
  14. 1 2 Takumi Kasai; Akeo Adachi; Shigeki Iwata (1979). "Classes of Pebble Games and Complete Problems". SIAM Journal on Computing. 8 (4): 574–586. doi:10.1137/0208046. Proves completeness of the generalization to arbitrary graphs.
  15. Mark H.M. Winands (2004). Informed Search in Complex Games (PDF) (Ph.D. thesis). Maastricht University, Maastricht, The Netherlands. ISBN 90-5278-429-9.
  16. S. Iwata; T. Kasai (1994). "The Othello game on an n*n board is PSPACE-complete". Theor. Comp. Sci. 123 (2): 329–340. doi:10.1016/0304-3975(94)90131-7.
  17. Robert Briesemeister (2009). Analysis and Implementation of the Game OnTop (PDF) (Thesis). Maastricht University, Dept of Knowledge Engineering.
  18. Stefan Reisch (1981). "Hex ist PSPACE-vollständig (Hex is PSPACE-complete)". Acta Inf. (15): 167–191.
  19. 1 2 3 John Tromp; Gunnar Farnebäck (2007). "Combinatorics of Go". This paper derives the bounds 48<log(log(N))<171 on the number of possible games N.
  20. 1 2 3 J. M. Robson (1983). "The complexity of Go". Information Processing; Proceedings of IFIP Congress. pp. 413–417.
  21. The size of the state space and game tree for chess were first estimated in Claude Shannon (1950). "Programming a Computer for Playing Chess" (PDF). Philosophical Magazine. 41 (314). Shannon gave estimates of 1043 and 10120 respectively, smaller than the upper bound in the table, which is detailed in Shannon number.
  22. Aviezri Fraenkel and D. Lichtenstein (1981). "Computing a perfect strategy for n×n chess requires time exponential in n". J. Comb. Th. A (31): 199–214.
  23. Chang-Ming Xu; Ma, Z.M.; Jun-Jie Tao; Xin-He Xu (2009). "Enhancements of proof number search in connect6". 2009 Chinese Control and Decision Conference. p. 4525. doi:10.1109/CCDC.2009.5191963. ISBN 978-1-4244-2722-2.
  24. On the fairness and complexity of generalized k-in-a-row games
  25. http://books.nips.cc/papers/txt/nips04/0259.txt
  26. 1 2 Shi-Jim Yen, Jr-Chang Chen; Tai-Ning Yang; Shun-Chin Hsu (March 2004). "Computer Chinese Chess" (PDF). International Computer Games Association Journal. 27 (1): 3–18.
  27. 1 2 Donghwi Park (2015). "Space-state complexity of Korean chess and Chinese chess". arXiv:1507.06401Freely accessible.
  28. Chorus, Pascal. "Implementing a Computer Player for Abalone Using Alpha-Beta and Monte-Carlo Search" (PDF). Dept of Knowledge Engineering, Maastricht University. Retrieved 29 March 2012.
  29. Kopczynski, Jacob S (2014). Pushy Computing: Complexity Theory and the Game Abalone (Thesis). Reed College.
  30. Joosten, B. "Creating a Havannah Playing Agent" (PDF). Retrieved 29 March 2012.
  31. E. Bonnet; F. Jamain; A. Saffidine (2014-03-25). "Havannah and TwixT are PSPACE-complete". arXiv:1403.6518Freely accessible [cs.CC].
  32. Kevin Moesker (2009). TWIXT: THEORY, ANALYSIS AND IMPLEMENTATION (PDF) (Thesis). Maastricht University, Faculty of Humanities and Sciences of Maastricht University.
  33. Lisa Glendenning (May 2005). Mastering Quoridor (PDF). Computer Science (B.Sc. thesis). University of New Mexico.
  34. Cathleen Heyden (2009). Implementing a Computer Player for Carcassonne (PDF) (Thesis). Maastricht University, Dept of Knowledge Engineering.
  35. The lower branching factor is for the second player.
  36. Julien Kloetzer; Hiroyuki Iida; Bruno Bouzy (2007). "The Monte-Carlo Approach in Amazons".
  37. P. P. L. M. Hensgens (2001). "A Knowledge-Based Approach of the Game of Amazons" (PDF). Universiteit Maastricht, Institute for Knowledge and Agent Technology.
  38. R. A. Hearn (2005-02-02). "Amazons is PSPACE-complete". arXiv:cs.CC/0502013Freely accessible [cs.CC].
  39. Hiroyuki Iida, Makoto Sakuta, Jeff Rollason (January 2002). "Computer shogi". Artificial Intelligence. 134 (1–2): 121–144. doi:10.1016/S0004-3702(01)00157-6.
  40. H. Adachi; H. Kamekawa; S. Iwata (1987). "Shogi on n × n board is complete in exponential time". Trans. IEICE. J70-D: 1843–1852.
  41. Christ-Jan Cox (2006). "Analysis and Implementation of the Game Arimaa" (PDF).
  42. David Jian Wu (2011). "Move Ranking and Evaluation in the Game of Arimaa" (PDF).
  43. Brian Haskin (2006). "A Look at the Arimaa Branching Factor".
  44. John Tromp (2016). "Number of legal Go positions".
  45. A.F.C. Arts (2010). Competitive Play in Stratego (PDF) (Thesis). Maastricht.
  46. Double dummy bridge (i.e. double dummy problems in the context of contract bridge) is not a proper board game but has a similar game tree, and is studied in computer bridge, which motivates including it in the list. The bridge table can be regarded as having one slot for each player and trick to play a card in, which corresponds to board size 52. Game-tree complexity is a very weak upper bound: 13! to the power of 4 players regardless of legality. State-space complexity is for one given deal; likewise regardless of legality but with many transpositions eliminated. Note that the last 4 plies are always forced moves with branching factor 1.
  47. L. Gualà; S. Leucci; E. Natale (2014). "Bejeweled, Candy Crush and other Match-Three Games are (NP-)Hard". arXiv:1403.5830Freely accessible.

External links

This article is issued from Wikipedia - version of the 11/27/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.