#P3100. [USACO14JAN] Building a Ski Course G
[USACO14JAN] Building a Ski Course G
题目描述
Farmer John is helping to turn his large field into a ski course for the upcoming winter Moolympics. The field has dimensions with , and its intended final composition is described by an grid of characters like this:
RSRSSS
RSRSSS
RSRSSS
Each character describes how the snow in a unit square of the field should be groomed: either 'R' for rough or 'S' for smooth (the Moolympics organizers think that a course is more interesting if it has a mixture of rough and smooth patches).
To build the desired course, Farmer John plans to modify his tractor so that it can stamp any patch of the field (with , ) with either entirely smooth snow or entirely rough snow. Since it takes a long time to reset the tractor between each of these stamps, FJ wants to make as large as possible. With , he can clearly create the desired ski course by stamping each individual square with either 'R' or 'S', as intended. However, for larger values of , it may no longer be possible to create the desired course design. Every unit square must be stamped at least once; it cannot be left in its default state. Stamps may overlap, and later stamps overwrite earlier ones.
Please help FJ determine the largest possible value of he can successfully use.
输入格式
- Line 1: Two space-separated integers and .
- Lines 2..: lines of exactly characters (each 'R' or 'S'), describing the desired ski course design.
输出格式
- Line 1: The maximum value of Farmer John can use to create the desired course pattern.
3 6
RSRSSS
RSRSSS
RSRSSS
3
提示
FJ can stamp a rough patch spanning columns 1-3, followed by a smooth patch spanning columns 2-4, then a rough patch spanning columns 3-5, and finally a smooth patch spanning columns 4-6.