406667: GYM102482 I Triangles
Description
For your trip to Beijing, you have brought plenty of puzzle books, many of them containing challenges like the following: how many triangles can be found in Figure I.1?
Figure I.1: Illustration of Sample Input 2.
The first line of input contains two integers $$$r$$$ and $$$c$$$ ($$$1 \le r \le 3 000$$$, $$$1 \le c \le 6 000$$$), specifying the picture size, where $$$r$$$ is the number of rows of vertices and $$$c$$$ is the number of columns. Following this are $$$2r - 1$$$ lines, each of them having at most $$$2c - 1$$$ characters. Odd lines contain grid vertices (represented as lowercase x characters) and zero or more horizontal edges, while even lines contain zero or more diagonal edges. Specifically, picture lines with numbers $$$4k + 1$$$ have vertices in positions $$$1, 5, 9, 13, \ldots$$$ while lines with numbers $$$4k + 3$$$ have vertices in positions $$$3, 7, 11, 15, \ldots$$$. All possible vertices are represented in the input (for example, see how Figure I.1 is represented in Sample Input 2). Horizontal edges connecting neighboring vertices are represented by three dashes. Diagonal edges are represented by a single forward slash ('/') or backslash ('\') character. The edge characters will be placed exactly between the corresponding vertices. All other characters will be space characters. Note that if any input line could contain trailing whitespace, that whitespace may be omitted.
OutputDisplay the number of triangles (of any size) formed by grid edges in the input picture.
ExamplesInput3 3 x---x \ / x / \ x xOutput
1Input
4 10 x x---x---x x \ / / \ x x---x x x / \ / \ \ x x---x---x---x / / \ \ / \ x---x---x---x---xOutput
12