Build walls between vertices to form a single enclosed fence without crossings or branches. The number indicates exactly how many walls — according to the crazy city building laws — must surround it (and a lack of number means there's no constraint.) So, presented with the following

the following fence could be constructed:

The grid of lots is always
Subtasks
There are currently 6 subtasks present. Subtask
The data currently consists of just the original data used at the ICPC regional, which had the added constraint that
Input Specification
The input is one zombie fencing problem, expressed by -
to represent no constraint).
Output Specification
You should print the length of the longest fence loop that can be constructed for that problem while still respecting all constraints, or you should print -1
if the problem has no such solution.
Sample Input 1
2 2
22
22
Sample Output 1
8
Sample Input 2
5 5
----0
2---2
3--2-
2-2--
22---
Sample Output 2
32
Comments