Prozori
의견: 0
\(6^{th}\) round, April \(14^{th}\), 2012
Now that spring is here and the sun is shining bright, people are starting to lower their blinds. Štefica is
an elderly woman who likes to keep track of what other people in the neighbourhood are doing and
then talk about it behind their backs. This year, she is particularly interested in who is lowering blinds in
the building across the street, and how low are they lowering them.
We will represent each window with a 4 x 4 grid, with asteriskes representing lowered blinds. Štefica
can see a window in one of the following 5 states:
....
....
....
....
....
....
....
....
....
....
The building across the street has N windows at each of the M floors. Given the current building state,
find out how many windows are in each of the 5 states shown above.
The first line of input contains space separated integers M and N (\(1 \le M\), \(N \le 100\)).
The following lines describe the current building state. Each window is represented with one of the 4 x
4 grids shown above, and windows are separated using character „#‟. See the example input for
clarification. Building description will have exactly 5\(M + 1\) lines each having 5\(N + 1\) characters.
Output should contain 5 space separated integers, number of windows for each type in order shown
above. Sum of these numbers is \(M*N\).
1 2
###########
#....#****#
#....#****#
#....#....#
#....#....#
###########1 0 1 0 02 3
################
#****#****#****#
#****#****#****#
#****#....#****#
#....#....#****#
################
#....#****#****#
#....#****#....#
#....#....#....#
#....#....#....#
################1 1 2 1 1평가 및 의견
Prozori
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Prozori