Astral Superposition
의견: 0
*Note: The time limit for this problem is 4s, twice the default.*
Bessie is using her nifty telescope to take photos of all the stars in the night
sky. Her telescope can capture an \(N \times N\) (\(1 \leq N \leq 1000\)) photo of
the stars where each pixel is either a star or empty sky. Each star will be
represented by exactly one pixel, and no two distinct stars share the same
pixel.
Overnight, something strange happens to the stars in the sky. Every star either
disappears or moves \(A\) pixels to the right, and \(B\) pixels downwards
(\(0 \leq A,B \leq N\)). If a star disappears or moves beyond the photo boundary,
it no longer appears in the second photo.
Bessie took photos before and after the shifting positions, but after
experimenting in Mootoshop, she accidentally superimposed one photo onto the
other. Now, she can see white pixels where both photos were empty, gray pixels
where stars existed in exactly one photo, and black pixels where there was a
star in both photos. Bessie also remembers that no new stars moved into the
frame of the second photo, so her first photo contains all of the stars in the
night sky.
Given the final photo, determine the minimum possible number of stars in the sky
before the shifting incident for \(T\) (\(1 \leq T \leq 1000\)) independent test
cases. If no arrangement of stars can produce the given final photo, output
\(-1\).
Problem credits: Suhas Nagar
SCORING
- Input 3: \(A=B=0\)
- Inputs 4-7: \(A=1, B=0, N\le 10\)
- Inputs 8-9: \(A=1, B=0\)
- Inputs 10-12: No additional constraints.
Problem credits: Suhas Nagar
The first line of input contains \(T\) and \(T\) test cases will follow.
The first line of each test case will contain \(N\) \(A\) \(B\).
Then follow \(N\) lines each representing one row of the superimposed photo. The
\(i\)th row from the top is represented by a string \(c_{i,1}c_{i,2}\dots c_{i,N}\),
where each \(c_{i,j} \in \{W,G,B\}\), representing the colors white, gray, and
black respectively.
It is guaranteed that the sum of \(N^2\) over all test cases will not exceed
\(10^7\).
For each test case, output the minimum number of stars that existed before the
shifting, or \(-1\) if impossible.
1
3 0 0
WWB
BBB
GGG7In this example, there is no shifting. The first photo is as follows: (. for
sky, * for star)
..*
***
***
The second photo, where the stars on the bottom row disappeared, is as follows:
..*
***
...
This is the only way to produce the superimposed photo, so the minimum possible
number of initial stars is \(7\).
3
5 1 2
GWGWW
WGWWW
WBWGW
WWWWW
WWGWW
3 1 1
WWW
WBW
WWW
3 1 0
GGB
GGW
WWW4
-1
4In the first case, there were at least \(4\) stars at the start. If we let \((r,c)\)
denote the intersection of the \(r\)th row from the top and \(c\)th column from the
left, one possibility is that they were initially at \((1,1), (3,2), (2,2),\) and
\((1,3)\). All the stars shifted, except for the one at \((2,2)\) which disappeared.
In the second case, there is no arrangement of stars in the initial photo that
can produce the middle black pixel given the shift.
In the third case, there were at least \(4\) stars at the start. One possibility
is that they were initially at \((1,1), (1,2), (1,3),\) and \((2,1)\). In the second
photo, the star originally at \((1,1)\) disappeared and the star originally at
\((1,3)\) moved off frame. The other two stars shifted to the right by 1.
riseoj 작성
출처 올림피아드 > USACO > 2024-2025 > January > Bronze
평가 및 의견
Astral Superposition
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Astral Superposition