top of page
Search

Puzzle #14: 13 Caves And A Thief Puzzle | Google



There are 13 caves arranged in a circle. There is a thief in one of the caves. Each day the the thief can move to any one of adjacent cave or can stay in same cave in which he was staying the previous day. And each day, cops are allowed to enter any two caves of their choice.


What is the minimum number of days to guarantee in which cops can catch the thief?


Note:

  • Thief may or may not move to adjacent cave.

  • Cops can check any two caves, not necessarily be adjacent.



Puzzle Solution:

Lets assume the thief is in cave C1 and going clockwise and cops start searching from cave C13 and C12 on your first day.

Cave C13 and C11 on second day,

C13 and C10 on third day and so on till C13 and C1 on 12th day.


So, basically the aim is to check C13 everyday so that if thief tries to go anti clockwise you immediately catch it and if goes clockwise cops will catch him in maximum 12 days (this include the case where he remains in Cave C1).


Answer is 12.


386 views
bottom of page