Advent Calendar - December 22, 2020

Tuesday, Dec 22, 2020| Tags: Raku

Advent Calendar 2020

| Day 21 | Day 22 | Day 23 |


The gift is presented by Noud Aldenhoven. Today he is talking about his solution to the task Is the room open? of “The Weekly Challenge - 046”. This is re-produced for Advent Calendar 2020 from the original post by Noud Aldenhoven.


This weeks The Weekly Challenge Task #2 has an interesting solution. The challenge is as follows:

Is the room open?

There are 500 rooms in a hotel with 500 employees having keys to all the rooms. The first employee opened main entrance door of all the rooms. The second employee then closed the doors of room numbers 2,4,6,8,10 and so on to 500. The third employee then closed the door if it was opened or opened the door if it was closed of rooms 3,6,9,12,15 and so on to 500. Similarly the fourth employee did the same as the third but only room numbers 4,8,12,16 and so on to 500. This goes on until all employees has had a turn.

Write a script to find out all the rooms still open at the end.

Solution

The solution is given in four steps.

Given a single room with number N. How many times did an employee open or close the door of that room? Let’s look at the k-th employee. The employee opens or closes the door if and only if k is a divisor of N. So if we want to know how often the door has been opened or closed we must count the number of divisors of the room number N.

If the room number Nhas been opened or closed an even number of times, the door is closed. Likewise, if the room numberN` has been opened or closed an odd number of times, the door is open. So this problem is equivalent to finding all equal or below 500 that have an odd number of divisors.

Take the prime decomposition of N

image-a

The number of divisors of N is given by image-b

Using the prime decomposition of N, the number of divisors of N is odd if and only if k1,k2,…,ki are all even. Because, if some kj would be odd, kj+1 is even, hence every product with kj+1 (such as the number of divisors of N) is even. But if k1, k2, …, kj are all even, N is a squared number.

Therefore, the only open rooms are the rooms with a squared number equal or below 500. A one-liner in Raku (Perl 6) is:

say $_**2 for 1..(500.sqrt);

If you have any suggestion then please do share with us perlweeklychallenge@yahoo.com.

Advent Calendar 2020

SO WHAT DO YOU THINK ?

If you have any suggestions or ideas then please do share with us.

Contact with me