Mravojed
의견: 0
Archeologists recently found the remains of Greco-Roman architecture. The location can be modeled as a grid of \(R \cdot C\) square cells. For each of the cells, archeologists have determined if some building was there or if the cell has always been empty.
After examining the artifacts in detail, they concluded that the location contains two buildings from different periods in time, and that the floor plans of both buildings are of square shape.
Because the buildings were from different periods in time, it is possible that their floor plans overlap.
Determine the possible location and size (length of the side of the square occupied by the floor plan) for each building.
The first line contains two integers \(R\) (\(1 \le R \le 100\)) and \(C\) (\(1 \le C \le 100\)), the size of the location.
Each of the next \(R\) lines contains a string of \(C\) characters . (dot) or x (lowercase letter). The character . means that nothing was found in that cell, while x indicates that there was a building there.
For each of the two buildings, output on a single line the row and column of its upper left corner, and
the size of the building.
Note: The test data will guarantee that a solution always exists, although it may not necessarily be
unique.
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Subtask 1 | 70점 |
3 3
xx.
xxx
...1 1 2
2 3 14 6
xx....
xx.xxx
...xxx
...xxx1 1 2
2 4 35 5
.....
xxx..
xxxx.
xxxx.
.xxx.2 1 3
3 2 3평가 및 의견
Mravojed
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Mravojed