[Solution] Pixelated Solution Circle Round 2 2022 - Code Jam 2022
Problem
Typical computer images are matrices of pixels, with each pixel being a small square of a specific color. Drawing lines that are not perfectly parallel to the axes of the pixel matrix results in imperfections. Drawing circles is an extreme example where those imperfections arise.
Suppose we have a picture consisting of by pixels, and we number the rows and columns of pixels between and , such that the center pixel is at row and column . Initially, all pixels are white. Then, a circle of radius and centered in the picture can be drawn in black by the following pseudocode, where set_pixel_to_black(x, y)
makes the pixel at row and column be colored black.
Notice that some pixels may be set to black more than once by the code, but the operation is idempotent (that is, calling set_pixel_to_black
on a pixel that is already black changes nothing).
The following is pseudocode for a function to draw a filled circle (starting from an all-white picture).
draw_circle_filled(R): for x between -R and R, inclusive { for y between -R and R, inclusive { if round(sqrt(x * x + y * y)) <= R: set_pixel_to_black(x, y) } }
And finally, the following is pseudocode to incorrectly draw a filled circle:
draw_circle_filled_wrong(R): for r between 0 and R, inclusive { draw_circle_perimeter(r) }
Given , calculate the number of pixels that would have different colors between a picture in which draw_circle_filled
() is called and another one in which draw_circle_filled_wrong
() is called.
Input
The first line of the input gives the number of test cases, . test cases follow. Each test case is described in a single line containing a single integer , the radius of the circle to draw.
Output
For each test case, output one line containing Case #:
, where is the test case number (starting from 1) and is the number of pixels that would have different colors between a picture in which draw_circle_filled
() is called and another one in which draw_circle_filled_wrong
() is called.
Limits
Memory limit: 1 GB.
.
Test Set 1 (Visible Verdict)
Time limit: 10 seconds.
.
Test Set 2 (Hidden Verdict)
Time limit: 15 seconds.
.
No comments:
Post a Comment