TORONTO KIDS COMPUTER CLUB | PMCA Saturday 18:30 Python Homework 22.04.16.
20561
post-template-default,single,single-post,postid-20561,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

PMCA Saturday 18:30 Python Homework 22.04.16.

22 Apr PMCA Saturday 18:30 Python Homework 22.04.16.

Question:
Alice is looking at a crystal through a microscope. Alice’s microscope has the interesting feature that it can superimpose grid lines over the image that she is looking at.

At level 1 of magnification, Alice sees the image as follows:

Notice that at level 1, there is a 5×5 grid superimposed over the image.

However, as Alice increases the magnification, the leaf pattern becomes more intricate.

At level 2 of the magnification, Alice sees the image with a 25×25 grid, and notices that three of the four larger squares in the original image have the small four square pattern on top. In fact, for this particular crystal, this self-similarity repeats for each magnification level.

Given that Alice’s microscope has up to 13 levels of magnification, she would like to try to quantify the detail of each grid cell at every one of these magnification levels.

Specifically, since there is a 5m×5m grid at magnification level m, Alice will call the bottom-left corner grid cell (0,0), the bottom-right grid cell (5m−1,0), the top-left grid cell (0,5m−1), and the top-right grid cell (5m−1,5m−1).

Given an integer magnification level m (1≤m≤13) and a grid position (x,y) (where 0≤x<5m and 0≤y<5m), Alice would like to know if her crystal will fill that grid cell, or if that grid cell will be empty space.

Input Specification
The first line of input will be T (0<T≤10) which is the number of test cases. On each of the next T lines there will be three integers: m, the magnification level, followed by x and y, the position of the grid cell that Alice wishes to examine.

Output Specification
The output will be T lines. Each line of output will either be empty, if the specified grid cell is empty, or crystal if that grid cell contains crystal.

Sample Input
4
1 1 1
1 1 0
1 2 1
2 8 5

Output for Sample Input
empty
crystal
crystal
crystal

Hint:
The best way to solve this question is using recursion. We can use recursion to decide if it is crystal or not or use recursion to decide the the length of the crystal.

No Comments

Sorry, the comment form is closed at this time.