eolymp
bolt
Try our new interface for solving problems
Problems

Border

Border

In international politics an important concept is a boundary between the states. Unclear understanding of the parties where the border may lead to international conflicts and even wars. In this problem the situation is somewhat simpler, since the two states have a clear understanding of what territory belongs to any of them. The area occupied by two States, is a rectangle of size $h$ by $w$ kilometers, divided into squares with a side of one kilometer. Each of these squares is wholly owned by one of the states. Find the length of the border between two states. The side of the square belongs to border, if from one side it belongs to one state, and from the other side it belongs to the second state. \InputFile The first line contains two integers: $w$ and $h~(1 \le w, h \le 100)$ --- the size of rectangle in kilometers. Next $h$ lines describe the territory. Each of the lines contains $w$ characters. If the symbol equals to \textbf{A}, the corresponding unit square belongs to the first state, and if it equals to \textbf{B}, it belongs to the second state. It is guaranteed that each state holds at least one square. The territory of each state represents a connected region. \OutputFile Print one number --- the length of the border between the states in kilometers. \includegraphics{https://static.eolymp.com/content/q9/q9f6ebv39p6bre1rr851mb9jos.gif}
Time limit 1 second
Memory limit 128 MiB
Input example #1
5 6
AAABB
ABBBB
AAABB
AAAAB
AAAAB
AABBB
Output example #1
13
Source 2011 Russian-Code-Cup 3 Round