icon

Kill the vampire

Share this page
Nosferatu

There is a vampire who lives in a castle with four underground vaults arranged in a line. A vampire hunter is on the prowl and to avoid her, the vampire sleeps in a different vault every day. But he is bound by a magic spell: he can only choose a vault that is directly adjacent to the vault he slept in the previous day. The vampire hunter can go to one vault every day. If she finds the vampire, she'll kill him. If not, she'll have to wait another day.

Is there a sequence of vaults the hunter can choose to guarantee she'll eventually find the vampire? Can you find a strategy for the general problem with n rooms?



This puzzle was suggested to us by Christian Perfect. He was told about it by David Cushing who traced it back to Mathoverflow.

Permalink
Comment

Let's note the vaults 1, 2, 3, 4.

Day 1: Visit vault 2
Day 2: Visit vault 2
Day 3: Visit vault 3
Day 4: Visit vault 3
Day 5: Visit vault 2

Permalink In reply to by Anonymous (not verified)
Comment

Having applied the abovementioned strategy, you'll get the vampire on day 3 (at the worst case).

Permalink
Comment

Let's call the vaults as A,B,C,D
assuming you cannot return back to A from D

Day 1, check vault B, the vampire must be in A,C,D
Day 2, check B again, the vampire must be in D, since if it was in A it must go to B, if it was in C it can only go to B or D.
Day 3, check C, and KILL.

IF you can return from D-A, but not A-D

Day 1, check B, the vampire must be in A,C,D
Day 2, check B again, the vampire must be in D.
Day 3, check C, the vampire must be in A
Day 4, check B, and KILL. :P

Permalink
Comment

If there are n holes,then

sequence of inspection should be,
Part 1: 2,3,4...,(n-1);
followed by
Part 2: (n-1),(n-2),...2.

if vampire started in an even numbered hole, then it will be found in part 1.
otherwise
if vampire started in odd numbered
hole , then it will be found in part 2.

Proof: The end holes 1 and n are not checked because, before being caught in these end holes, vampire will be found in hole 2 or hole n-1. in both parts we are traversing from one end to other and parity of our movement is different in part 1 and part 2. Hence hermit will be caught in whichever part our parity matches with that of vampire.

Thanks

Permalink
Comment

couldn't the hunter just do 1313 or 2424

Permalink
Comment

no, you couldn't just check 1313 as if the vampire was in 2 when you checked 1, he could then move to 1 when you checked 3 and back to 2 again when you checked 1.

Permalink
Comment

put a trap in each vault each day then when the vampire goes to that one KABOOM he's dead

Permalink
Comment

Why doesn't the just hunter wait in any one of the rooms till the vampier eventually shows up??

Permalink
Comment

Hunter can do 2233, eventually she will get the vampire.