Skip to content

primaryobjects/missionariescannibals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Missionaries and Cannibals in R

Solves the classic Missionaries and Cannibals artificial intelligence problem using the R programming language. Why not? See http://www.aiai.ed.ac.uk/~gwickler/missionaries.html

Rules

On the bank of a river are three missionaries and three cannibals. They're late for dinner and need to get to the other side. There is one boat available that can hold up to two people. If the cannibals ever outnumber the missionaries on either of the river’s banks, the missionaries will get eaten. How can the boat be used to safely carry all the missionaries and cannibals across the river?

Running It

findSolution(startState)

Output

The program finds all possible solutions from a starting state, within a depth of 15. It uses recursion to evaluate a depth-first search across the transition paths. Output is in the following format:

m1c1

Where 'm' indicates the number of missionaries being moved and 'c' indicates the number of cannibals being moved. At each move, the boat alternates between right and left.

Example output:

[1] "*********************** Solution found in 11 steps!"
[1] "m1c1"
[1] "m1c0"
[1] "m0c2"
[1] "m0c1"
[1] "m2c0"
[1] "m1c1"
[1] "m2c0"
[1] "m0c1"
[1] "m0c2"
[1] "m0c1"
[1] "m0c2"

In the above example, the first step is to move 1 mercenary and 1 cannibal to the right bank. The second step moves 1 mercenary back to the left bank. The third step moves 2 cannibals to the right bank (all 3 cannibals are now on the right bank). The fourth step moves 1 cannibal back to the left bank. The fifth step moves 2 missionaries to the right bank (there are now equal missionaries and cannibals on both banks, m1c1 and m2c2). For remaining steps, see graph at http://www.aiai.ed.ac.uk/~gwickler/missionaries.html.

License

MIT

Author

Kory Becker http://www.primaryobjects.com/kory-becker

About

Missionaries and Cannibals AI problem in R

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages