Canadian Computing Competition: 2005 Stage 1, Junior #4
In an old house there is a room that is shaped like a cross. You can think of a cross as being an outlining rectangle with four smaller rectangles cut out of the corners. The floor of the room is completely covered with square tiles. Bridget is walking around the room, stepping from one tile to the next, spiraling towards the centre. Bridget always walks clockwise and stays as close to the edge of the room as possible without stepping on any tile twice. It is possible that she may be trapped and unable to move to an adjacent tile before reaching all the tiles in the room.
Assume that the upper left corner of the outlining rectangle is position
Write a program that calculates Bridget's final column and row position in the room after the walk. The program must accept input for the dimensions of the cross: i.e. the width and height of the outlining rectangle, the width and height of the "cut out" rectangles, and the number of steps the person will take.
The maximum width and height of the outlining rectangle will be
Input Specification
Five integers, each on their own line. The first two represent the width and height of the outlining rectangle, while the next two represent the width and height of the "cut out" rectangles. The last integer specifies how many steps are taken.
In the diagram, the input for the dimensions of the cross is:
10
8
3
2
In other words, the outlining rectangle is
Output Specification
Two integers, each on their own line, representing Bridget's final column and row position in the room after the walk.
Sample Input 1
10
8
3
2
15
Sample Output 1
7
7
Explanation for Sample Output 1
Same room as diagram above, taking
Sample Input 2
8
7
2
2
27
Sample Output 2
5
2
Explanation for Sample Output 2
Sample Input 3
8
7
2
2
40
Sample Output 3
7
4
Explanation for Sample Output 3
Same square as Sample Input 2, but after
Sample Input 4
6
6
1
2
1
Sample Output 4
3
1
Explanation for Sample Output 4
A
Comments
What happens when Bridget gets trapped? In the third input, Bridget gets trapped at one point.
Print the square she gets trapped on.
I've got an import error. I'm importing numpy using python. What's the problem with it?
I don't think the judge supports numpy
Oh. why?
It's not a part of the base Python language