Pro.ID10214 TitleA Rectangular Barn Title链接http://10.20.2.8/oj/exercise/problem?problem_id=10214 AC17 Submit45 Ratio37.78% 时间&空间限制描述Ever the capitalist, Farmer John wants to extend his milking business by purchasing more cows. He needs space to build a new barn for the cows. FJ purchased a rectangular field with R (1 ≤ R ≤ 3,000) rows numbered 1..R and C (1 ≤ C ≤ 3,000) columns numbered 1..C. Unfortunately, he realized too late that some 1 × 1 areas in the field are damaged, so he cannot build the barn on the entire R × C field. FJ has counted P (0 ≤ P ≤ 30,000) damaged 1 × 1 pieces and has asked for your help to find the biggest rectangular barn (i.e., the largest area) that he can build on his land without building on the damaged pieces. 输入Line 1: Three space-separated integers: R, C, and P. Lines 2..P+1: Each line contains two space-separated integers, r and c, that give the row and column numbers of a damaged area of the field 输出Description Ever the capitalist, Farmer John wants to extend his milking business by purchasing more cows. He needs space to build a new barn for the cows. FJ purchased a rectangular field with R (1 ≤ R ≤ 3,000) rows numbered 1..R and C (1 ≤ C ≤ 3,000) columns numbered 1..C. Unfortunately, he realized too late that some 1 × 1 areas in the field are damaged, so he cannot build the barn on the entire R × C field. FJ has counted P (0 ≤ P ≤ 30,000) damaged 1 × 1 pieces and has asked for your help to find the biggest rectangular barn (i.e., the largest area) that he can build on his land without building on the damaged pieces. Input Line 1: Three space-separated integers: R, C, and P. Lines 2..P+1: Each line contains two space-separated integers, r and c, that give the row and column numbers of a damaged area of the field Output Line 1: The largest possible area of the new barn Sample Input 3 4 2 Sample Output 6 Hint OUTPUT DETAILS 1 2 3 4 Pieces marked with 'X' are damaged and pieces marked with '#' are part of the new barn. Source 样例输入3 4 2 样例输出6 提示OUTPUT DETAILS 1 2 3 4 Pieces marked with 'X' are damaged and pieces marked with '#' are part of the new barn. |