vote up 4 vote down star
2

Four men have to cross a bridge at night.Any party who crosses, either one or two men, must carry the flashlight with them. The flashlight must be walked back and forth; it cannot be thrown, etc. Each man walks at a different speed. One takes 1 minute to cross, another 2 minutes, another 5, and the last 10 minutes. If two men cross together, they must walk at the slower man's pace. There are no tricks--the men all start on the same side, the flashlight cannot shine a long distance, no one can be carried, etc.

And the question is What's the fastest they can all get across. I am basically looking for some generalized approach to these kind of problem. I was told by my friend, that this can be solved by Fibonacci series, but the solution does not work for all.

Please note this is not a home work.

flag

Is this homew... oh. – skaffman Jul 17 at 16:03
1  
Kyahaha, I was asked this during an interview, but it was constrained further by saying it was at night, very dark and the flashlight battery can only last 17 minutes. – Jimmy Chandra Jul 17 at 16:10
1  
@ Jimmy Chandra - doesn't that give away the answer? – Matthew Jones Jul 17 at 16:11
1  
I had an interview like that once. They provided a ride and for part of the way I had to wear a blindfold. – Smandoli Jul 17 at 16:13
1  
When does the wolf attack the sheep? (xkcd.com/589) – Nathan Koop Jul 17 at 16:18
show 4 more comments

5 Answers

vote up 11 vote down check

There is an entire PDF that solves the general case of this problem (in a formal proof).

link|flag
Thats a very good reference Matthew. Thanks +1 – Ganesh M Jul 17 at 16:22
vote up 6 vote down

17 minutes - this is a classic MS question.

1,2 => 2 minutes passed.
1 retuns => 3 minutes passed.
5,10 => 13 minutes passed.
2 returns => 15 minutes passed.
1,2 => 17 minute passed.

In general the largest problem / slowest people should always be put together, and sufficient trips of the fastest made to be able to bring the light back each time without using a slow resource.

link|flag
Seems your generalized solution works for other input as well .. +1 – Ganesh M Jul 17 at 16:21
1  
I don't think he is looking for 17. More like he is looking about the algo to solve this problem. – Jimmy Chandra Jul 17 at 16:25
vote up 3 vote down

I would solve this problem by placing a fake job ad on Dice.com, and then asking this question in the interviews until someone gets it right.

link|flag
I think this was the fastest down-vote I've ever gotten. Awesome! – MusiGenesis Jul 17 at 16:10
+1. O(n) complexity (with n the number of interviews, not the number of bridge crossers, unfortunately ;)) – Stephan202 Jul 17 at 16:18
@Stephan202: increasing n (interviewees) is a good thing for me, because I look like I'm accomplishing something at work, plus in this economy it's easy to extort candidates and make them pay for lunch and stuff. – MusiGenesis Jul 17 at 16:21
And another downvote! The gift that keeps on pissing off! – MusiGenesis Aug 2 at 0:29
vote up 1 vote down

An exhaustive search of all possibilities is simple with such a small problem space. Breadth or depth first would work. It is a simple CS problem.

I prefer the missionary and cannibal problems myself

link|flag
vote up 0 vote down

17 -- a very common question

-> 1-2 = 2
<- 2 = 2
-> 5,10 = 10 (none of them has to return)
<- 1 = 1
-> 1,2 = 2

all on the other side
total = 2+2+10+1+2 = 17

usually people get it as 19 in the first try

link|flag
Opps. someone already did it, i type slow :D. anyways, the solution is standard and its a very standard puzzle. – Vivek Sharma Jul 17 at 16:07
Even I know the solution. But looking for a generalized solution for these kind of problems. Anyway good try. – Ganesh M Jul 17 at 16:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.