Table of Contents

Assignment 1: EFG

You find yourself in a grid-based cave. Your goal is to escape with as much gold as possible. Your enemy is an all-knowing, all-seeing posse of miners who try to capture you.

The Game

The game is played on a grid-based map as follows:

The miners may also get an extra turn. If the first hiding place You step on is unoccupied, miners may choose to relocate one of their members to a different hiding place (not on top of the player).

Fights

Each cave defines capture_prob – the probability of a miner successfully capturing You during a fight. If you are caught, the game ends; otherwise, You dispatch of the miner and continue (safe in the knowledge there is one less miner waiting for you).

Scoring

The score starts at zero. 10 points are awarded for a successful escape, with 1 additional point for each gold taken. No points will be awarded in case the player gets captured or stuck on a square with no legal moves.


In case of any problems with this assignment, with BRUTE, the template or the library, please send me an email (votroto1@fel.cvut.cz).

Homework Assignment 1

Your task is to accurately describe the rules of the game as a two-player zero-sum extensive form game.

Requirements

Your program must accept the cave definition from standard input, and must write the resulting efg representation to standard output, i.e. the expected usage is python main.py < cave.txt.

You must not open, read or write to any files, and your standard output must contain only the efg representation without any debugging information.

Examples, Tests, Templates and Libraries

You can use this template and examples to simplify your implementation.

The template uses a library written on top of pygambit and pydot to simplify the creation, and visualization of your extensive form games. You can download it directly from Github (pip install git+https://github.com/votroto/cgt_bandits.git. Then, see the examples directory).

There is no requirement to use my library. If You are feeling adventurous, you can use pygambit directly, or even use the template from last year, along with the gambit GUI. If none of the above works for You, feel free to implement the entire thing yourself.

pygambit can compute the equilibria and the value of your games; although, do not expect it to work for larger games. Implementing a better algorithm will be the subject of your second homework assignment.

Make sure that you have Graphviz installed, if you want to render the graphs locally. If you do not wish to install Graphviz, you can still print the DOT file and use an online renderer instead.

Input File Format

Caves have the following format

number_of_miners:int capture_prob:float\n
maze:Matrix[char]

Example

2 0.33
######
#SE-D#
#-##G#
#--E-#
######

(- empty square, S start, D destination, E possible hiding place, G gold, # wall)

Notes