Mono
의견: 0
Mirko soon realised that number sequences are not the best career choice, and went right back to the letter-table business.
Mirko's table has \(R\) rows and \(C\) columns and consists of lowercase letters. Each cell of the table is a square of equal size. We assign coordinates to the vertices of those squares, so that the upper-left corner of the table has coordinates \((0, 0)\), the upper-right \((C, 0)\), the lower-left \((0, R)\), and the lower-right \((C, R)\).
We say that a polygon within the table is monoliteral if the following holds:
- its vertices are from the described set of cell-square vertices,
- its edges are parallel to the coordinate axes,
- all letters inside the polygon are equal.
A simple polygon for which the first two conditions are true (the third one may or may not be true) is given. Mirko would like to know the number of monoliteral polygons that can be obtained by moving the given one up, down, left, or right (or any combination thereof), but not rotating.
In test cases worth 40% of total points, R, C and V will not exceed 20.
In test cases worth 70% of total points, V will not exceed 20.
\(3^{rd}\) round, December \(11^{th}\) 2010
EXAMPLE TEST DATA
input
3 3
aaa
aaa
aaa
4
2 0
2 2
0 2
0 0
input
3 3
aaa
aba
aaa
4
2 0
2 2
0 2
0 0
input
5 4
xyyx
xyyy
xxyy
xxxx
xxxx
8
1 3
1 2
0 2
0 0
2 0
2 1
3 1
3 3
output
4
output
0
output
2
The first line of input contains two space separated integers \(R\) and \(C\) (\(1 \le R, C \le 500\)).
Each of the next \(R\) lines contains exactly \(C\) lowercase letters, this is Mirko's table.
The following line contains an integer \(V\) (\(4 \le V \le 500\)), the number of vertices of the given polygon.
Each of the next \(V\) lines contains two integers \(X\), \(Y\) (\(0 \le X \le C\), \(0 \le Y \le R\)), the coordinates of the vertices of the given polygon. Vertices are given in clockwise order. The given polygon will satisfy conditions \(1\) and \(2\) from above.
In the first and only line of output, print the expected number of polygons.
Scoring: Test cases worth \(40\%\) of total points have \(R\), \(C\) and \(V\) not exceeding \(20\). Test cases worth \(70\%\) of total points have \(V\) not exceeding \(20\).
| 서브태스크 | 점수 | 설명 |
|---|---|---|
Test 1 | 10점 | None |
Test 2 | 10점 | None |
Test 3 | 10점 | None |
Test 4 | 10점 | None |
Test 5 | 10점 | None |
Test 6 | 10점 | None |
Test 7 | 10점 | None |
Test 8 | 10점 | None |
Test 9 | 10점 | None |
Test 10 | 10점 | None |
3 3
aaa
aaa
aaa
4
2 0
2 2
0 2
0 043 3
aaa
aba
aaa
4
2 0
2 2
0 2
0 005 4
xyyx
xyyy
xxyy
xxxx
xxxx
8
1 3
1 2
0 2
0 0
2 0
2 1
3 1
3 32평가 및 의견
Mono
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
Mono