As a means of improving my skill as a PHP developer I often challenge myself with problems from the site Programming Praxis. 99% of the time I can solve the riddles myself, but I'm jammed on this one and need some guidance on how to get started. The riddle is called "Multiple Dwellings". Here is the problem:

Baker, Cooper, Fletcher, Miller and Smith live on different floors of an apartment house that contains only five floors. Baker does not live on the top floor. Cooper does not live on the bottom floor. Fletcher does not live on either the top or the bottom floor. Miller lives on a higher floor than does Cooper. Smith does not live on a floor adjacent to Fletcher’s. Fletcher does not live on a floor adjacent to Cooper’s. Where does everyone live?

My basic trouble is this: I do not understand how to test and evaluate different logical situations. So for example, if we want to test if Baker belongs on the first floor, how best to "fill in" the test positions for each of the 4 remaining people? My (many) attempts have all ended in frustration at the bottoms of massive If/else if/else trees.

This isn't for homework, money, or fame - just a riddle I could use a little help getting started on!

Updated - Here is my solution! Thanks for all the input everyone, not necessarily optimized but at least now I understand it:

<?php

    function testThisOne ($testList) {
        $MillerFloor = "";
        $CooperFloor = "";
        $SmithFloor = "";
        $FletcherFloor = "";

        foreach ($testList as $key => $person) if ($person == "Miller") $MillerFloor = $key;
        foreach ($testList as $key => $person) if ($person == "Cooper") $CooperFloor = $key;
        foreach ($testList as $key =>$person) if ($person == "Smith") $SmithFloor = $key;
        foreach ($testList as $key => $person) if ($person == "Fletcher") $FletcherFloor = $key;

        if ($testList[4] == "Baker") return false;
        if ($testList[0] == "Cooper") return false;
        if ($testList[0] == "Fletcher" || $testList[4] == "Fletcher") return false;
        if ($MillerFloor < $CooperFloor) return false;
        if (abs($SmithFloor - $FletcherFloor) == 1 || abs($CooperFloor - $FletcherFloor) == 1) return false;

        return true;
    }

    function puzzleSolve1() {
        $people = array("Baker","Cooper","Fletcher","Miller","Smith");
        do {
            shuffle($people);
        } while (!testThisOne($people));
        return $people;
    }

?>
link|improve this question
..sure. If that's not the case, tell us what have you tried – metrobalderas Jan 31 '11 at 14:49
Maybe make this a community wiki post? – jakenoble Jan 31 '11 at 14:50
One approach would be look up some permutation algorithms. Then you can calculate all the different permuations of people and apartments, and simply test each permutation until one satisfies all the criteria. – Paul Dixon Jan 31 '11 at 14:56
1  
Maybe use a different language - this looks like a job for Prolog! – Benubird Jan 31 '11 at 15:33
2  
To me, this kind of sounds like a variation of Sudoku (in that you need to "fill in the blanks" according to some set of rules). Looking up Sudoku solvers just might give you a kick-start if the posted answers haven't yet. – Mark Rushakoff Jan 31 '11 at 17:11
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted

Interesting problem. Since it's a programming challenge, I think the best way to do it is just going to be generating all the possible arrangements of the people, and testing whether they're right.

Since you just wanted a starting point, I'm not going to write any actual code, I'll just outline the way I'd approach solving it:

  1. Since all the tenants live on different floors, you need to use a "permutation" algorithm to generate all their different possible arrangements. That is, you're starting with a set like {1, 2, 3, 4, 5}, with each element representing one person's floor number, say in the order of Baker, Cooper, Fletcher, Miller, Smith. You need to find every other possible arrangement. The algorithm on wikipedia is fairly straightforward and should be easy to implement.
  2. For every permutation you generate, you need to test if all the conditions are true. If any of the conditions are false, stop testing and go on to the next permutation. If all the conditions are satisfied, you're done. All the conditions are fairly easy to test, for example:

    "Baker does not live on the top floor." >> $baker != 5

    "Miller lives on a higher floor than does Cooper." >> $miller > $cooper

    And so on.

link|improve this answer
Thank you, that makes complete sense and is roughly in line with my solution (which I'm about to post). – Jason Lunsford Jan 31 '11 at 19:12
"each element representing one person's floor number" except the position within the set represents the floor number, and the individual digits (only 5 of them) represent the individual persons. If you start looking at the problem from this POV, generating the permutations becomes a matter of counting to 54321 in base 5 (and you can actually apply further optimizations based on the problem itself). Anyway +1 from me too! If you'd improve your answer would be great. – Flavius Jan 31 '11 at 20:03
feedback

I guess you could format this a a set of linear (in)equations.

B < 5
C > 1
F < 5
F > 1
M > C
|S - F| > 1
|F - C| > 1

These plus: B != C != F != S != M

Now feed this into simplex algorithm and you are done :)

EDIT: But if you want to solve this programatically, I guess testing all permutations for these conditions would be much simpler - there is only 5! of them.

link|improve this answer
Shouldn't it be C > 1 and F > 1 since there are only 5 floors? – The Scrum Meister Jan 31 '11 at 15:35
Right, I messed up indexes :) – Matěj Zábský Jan 31 '11 at 15:56
feedback

So let's call the persons B C F M S.

Basically everyone can live anywhere, so we have this starting situation:

[BCFMS] [BCFMS] [BCFMS] [BCFMS] [BCFMS]

Now you do say

Baker does not live on the top floor.

So We'll have

[BCFMS] [BCFMS] [BCFMS] [BCFMS] [CFMS]

Cooper does not live on the bottom floor.

So we end up with:

[BFMS] [BCFMS] [BCFMS] [BCFMS] [CFMS]

Fletcher does not live on either the top or the bottom floor.

Ookay:

[BMS] [BCFMS] [BCFMS] [BCFMS] [CMS]

Miller lives on a higher floor than does Cooper.

Ok, so M cannot be on a lower position than C:

[BS] [BCFS] [BCFMS] [BCFMS] [CMS]

And also, C cannot be on the last floor, because M must be above him:

[BS] [BCFS] [BCFMS] [BCFMS] [MS]

(A): Smith does not live on a floor adjacent to Fletcher’s.

(B): Fletcher does not live on a floor adjacent to Cooper’s.

So there's no S-F, F-S, F-C or C-F on adjacent "boxes" (floors).

And we also know that

(C): live on different floors of an apartment house

Conforming to (C), we have two possible situations, the first floor being B's or S's

Let's take the second case (because we know (A) about him)

[S] [BCFS] [BCFMS] [BCFMS] [MS]

According to (A):

[S] [BC] [BCF] [BCF] [M]

So we also know that M lives above C (the previous step is true already, as we know M for sure being on the last floor by now):

[S] [BC] [BCF] [BCF] [M]

According to (B), neither F nor C can be on the 3rd floor, and under the influence of (C), we ultimately get the only one possible permutation because of further reductions (only one person per floor):

[S] [C] [B] [F] [M]

So here is the solution:

Smith, Cooper, Baker, Fletcher, Miller

link|improve this answer
Awesome, that is an extremely readable breakdown. I've figured out my "round one" solution prior to reading this post, but now I have an improvement in mind. Thank you! – Jason Lunsford Jan 31 '11 at 19:11
You're welcome, glad I could help, even though my answer is purely matematical, not programatical. – Flavius Jan 31 '11 at 19:16
feedback

Your Answer

 
or
required, but never shown

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