a generalized model for games of cops and robbers with
play

A Generalized Model for Games of Cops and Robbers with Randomness - PowerPoint PPT Presentation

A Generalized Model for Games of Cops and Robbers with Randomness Franois Laviolette Jose Desharnais Frdric Simard Universit Laval Department of Computer Science and Software Engineering Simard et al. General Cops and Robbers 1/11


  1. A Generalized Model for Games of Cops and Robbers with Randomness François Laviolette Josée Desharnais Frédéric Simard Université Laval Department of Computer Science and Software Engineering Simard et al. General Cops and Robbers 1/11

  2. Introduction Cops and Robbers games have been known as models for fully discretized perfect information pursuit games . They assume • two players oppose each other, • discrete time, • discrete space, • players know everything that has been played. Simard et al. General Cops and Robbers 2/11

  3. Introduction These games come in many instances • the cop and robber game of Nowakowski, Winkler and Quilliot ( solved in 1983 ), • the k − cops and robber game ( solved around 2012 ), • the helicopter cops and robber ( solved in 1993 ), • the tandem-cops and robber ( solved in 2005 ), • etc. Simard et al. General Cops and Robbers 2/11

  4. The one model to rule them all Instead of studying each game seperatly, one could want to regroup them under a single model. In fact, we note that • each game is played on a fixed discrete structure, • each turn is described with a precise configuration, • each turn necessitates a defined way to modify the configuration, • at the end of each turn we can verify if the robber is free. Thus, We should be able to describe all cops and robbers game with a single model! Simard et al. General Cops and Robbers 3/11

  5. The one model to rule them all Bonato and MacGillivray’s generalization Bonato and MacGillivray described a generalization of cops and robbers games in a 2014. However it doesn’t include random elements such as random walks, capture probabilities, etc. Simard et al. General Cops and Robbers 3/11

  6. The one model to rule them all Indeed, we want to incorporate the cop and drunk robber game into our model. Cop and drunk robber game • Same rules as the classic game, • the robber walks according to a transition matrix M . It was solved recently with the following recurrence relation w 0 ( r , c ) := 1 ⇐ ⇒ r = c ; otherwise it is 0;  1 , if c ∈ N [ r ];   w n ( r , c ) = � M ( r , r ′ ) w n − 1 ( r ′ , c ′ ) , max if c / ∈ N [ r ] . c ′ ∈ N [ c ]   r ′ ∈ N [ r ] Simard et al. General Cops and Robbers 3/11

  7. The one model to rule them all We wish to integrate stochasticity ( random robbers, random captures, random events, etc. ). We thus talk abstractly of • sets of game states; • sets of actions; • transition probabilities. Simard et al. General Cops and Robbers 3/11

  8. A Generalized Model for Games of Cops and Robbers with Randomness A generalized Cops and Robbers game We say G := ( S , I , F , A , T ) is a Cops and Robbers game if • G is played with two-players (cops and robbers), with perfect information and turn-based; Simard et al. General Cops and Robbers 4/11

  9. A Generalized Model for Games of Cops and Robbers with Randomness A generalized Cops and Robbers game We say G := ( S , I , F , A , T ) is a Cops and Robbers game if • S = S c × S r × S o is the set of possible game states ; Simard et al. General Cops and Robbers 4/11

  10. A Generalized Model for Games of Cops and Robbers with Randomness A generalized Cops and Robbers game We say G := ( S , I , F , A , T ) is a Cops and Robbers game if • I ⊂ S is the set of initial states; Simard et al. General Cops and Robbers 4/11

  11. A Generalized Model for Games of Cops and Robbers with Randomness A generalized Cops and Robbers game We say G := ( S , I , F , A , T ) is a Cops and Robbers game if • F ⊂ S is the set of final game states ; Simard et al. General Cops and Robbers 4/11

  12. A Generalized Model for Games of Cops and Robbers with Randomness A generalized Cops and Robbers game We say G := ( S , I , F , A , T ) is a Cops and Robbers game if • A c ( s ) , A r ( s ′ ) are the sets of playable actions from states s , s ′ ; Simard et al. General Cops and Robbers 4/11

  13. A Generalized Model for Games of Cops and Robbers with Randomness A generalized Cops and Robbers game We say G := ( S , I , F , A , T ) is a Cops and Robbers game if • T c : S × A c × S → [0 , 1] and T r : S × A r × S → [0 , 1] are transition probabilities seen as P [ s ′ | s , a ]. Simard et al. General Cops and Robbers 4/11

  14. Let’s recap • G = ( S , I , F , A , T ) is an abstract game, said to be of cops and robbers if it is two-player, perfect information and turn-based. • G is described by a sequence of states s ∈ S . Two sets I , F are included in S . ⇒ The game ends whenever the robbers cannot exit F ! • Each player must choose an action a c ∈ A c ( s ) , a r ∈ A r ( s ′ ) defined from states s , s ′ . • Whenever a player x ∈ { r , c } chooses an action a from state s , the resulting state s ′ is chosen randomly according to T x ( s , a , s ′ ). Simard et al. General Cops and Robbers 5/11

  15. Solving abstract games The capture time At each turn i is defined a random variable X i ∈ { 0 , 1 } such that X i = 1 if and only if at the end of turn i the current state is final . The robbers capture time is defined by � min n ( X n = 1 | ω c , ω r ) , if n exists, T ω c ,ω r := ∞ , otherwise. ω c , ω r are the cops’ and the robbers’ strategies . Simard et al. General Cops and Robbers 6/11

  16. The capture probability The capture time � min n ( X n = 1 | ω c , ω r ) , if n exists, T ω c ,ω r := ∞ , otherwise. Assume players play optimally and define the probability of capture in n turns as p ∗ n := max ω c min ω r P [ T ω c ,ω r ≤ n ] . Simard et al. General Cops and Robbers 7/11

  17. The w n recursion In addition to our definition of G , our main contribution is the definition of the following function w n : S → [0 , 1]. The w n recursion w 0 ( s ) := 1 ⇐ ⇒ s ∈ F .  1 , if s ∈ F ,    �  T c ( s , a c , s ′ ) max   w n ( s ) = a c ∈ A c ( s ) s ′ ∈ S  � T r ( s ′ , a r , s ′′ ) w n − 1 ( s ′′ ) ,  min otherwise.    a r ∈ A r ( s ′ )  s ′′ ∈ S w n ( s ) gives the probability a state s leads to a final state in n turns or less! Simard et al. General Cops and Robbers 8/11

  18. The w n recursion The capture probability The probability the cops capture the robbers in at most n turns is p ∗ n := max ω c min ω r P [ T ω c ,ω r ≤ n ] . A copwin theorem The recursion w n is adequatly defined and gives the probability the robbers get captured in n turns or less. s r ∈ S r w n ( s c , s r ) = p ∗ s c ∈ S c min max n Simard et al. General Cops and Robbers 8/11

  19. Complexity results The w n function is computed using a dynamic programming approach. Complexity Say at most N turns are allowed in G . Then computing w N takes � time complexity and O ( N | S | ) space complexity. � | S | 3 | A c || A r | O • N can be upper-bounded and the space complexity is linear in this upper-bound and | S | . • When A c and A r are of size polynomial in S , then computing w N takes polynomial time. Simard et al. General Cops and Robbers 9/11

  20. Some examples Cop and Drunk Robber with detection probability Let G = ( V , E ) be a finite, undirected, reflexive, connected graph and let S = V 2 F = { ( c , c ) ∈ S } A c ( c , r ) = N [ c ] A r ( c , r ) = N [ r ] . Now assume the robber moves uniformly at random and let ⇒ c ′ ∈ N [ c ]; T c (( c , r ) , c ′ , ( c ′ , r )) = 1 ⇐  pod ( r ) , if c = r = u ;    (1 − pod ( r ))  , if c = r , u ∈ N ( r );   deg( r ) T r (( c , r ) , r ′ , ( c , u )) = 1 deg( r )+1 , if c � = r , u ∈ N [ r ];      0 , otherwise.  pod is the probability of detection on vertex r . Simard et al. General Cops and Robbers 10/11

  21. Some examples Cop and Drunk Robber with detection probability w 0 ( c , r ) := 1 ⇐ ⇒ c = r ;  1 , if c = r , otherwise   w n ( c , r ) = � T r (( c ′ , r ) , r ′ , ( c ′ , u )) w n − 1 ( c ′ , u ) . c ′ ∈ N [ c ] min max r ′ ∈ N [ r ]   u ∈ N [ r ] Simard et al. General Cops and Robbers 10/11

  22. Conclusion In conclusion, we • defined a general model of cops and robbers game with random elements, • conceived of a recursion formula that solves this game, • evaluated the complexity of this formula, • showed how to model known games in our framework. Simard et al. General Cops and Robbers 11/11

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend