hdu 1506 City Game 二维的多重背包

City Game

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2580    Accepted Submission(s): 1032


Problem Description
Bob is a strategy game programming specialist. In his new city building game the gaming environment is as follows: a city is built up by areas, in which there are streets, trees,factories and buildings. There is still some space in the area that is unoccupied. The strategic task of his game is to win as much rent money from these free spaces. To win rent money you must erect buildings, that can only be rectangular, as long and wide as you can. Bob is trying to find a way to build the biggest possible building in each area. But he comes across some problems – he is not allowed to destroy already existing buildings, trees, factories and streets in the area he is building in.

Each area has its width and length. The area is divided into a grid of equal square units.The rent paid for each unit on which you're building stands is 3$.

Your task is to help Bob solve this problem. The whole city is divided into K areas. Each one of the areas is rectangular and has a different grid size with its own length M and width N.The existing occupied units are marked with the symbol R. The unoccupied units are marked with the symbol F.
 
Input
The first line of the input contains an integer K – determining the number of datasets. Next lines contain the area descriptions. One description is defined in the following way: The first line contains two integers-area length M<=1000 and width N<=1000, separated by a blank space. The next M lines contain N symbols that mark the reserved or free grid units,separated by a blank space. The symbols used are:

R – reserved unit

F – free unit

In the end of each area description there is a separating line.
 
Output
For each data set in the input print on a separate line, on the standard output, the integer that represents the profit obtained by erecting the largest building in the area encoded by the data set.
 
Sample Input
2
5 6
R F F F F F
F F F F F F
R R R F F F
F F F F F F
F F F F F F
 
5 5
R R R R R
R R R R R
R R R R R
R R R R R
R R R R R
 
 参考代码:
View Code
 1 #include <iostream>
 2 #include <algorithm>
 3 #include <stdio.h>
 4 #include <string.h>
 5 using namespace std;
 6 
 7 __int64 map[1010][1010];        //map[i][j]储存的对于是第i行j列这个字母其上有多少个F
 8 __int64 l[1010],r[1010];
 9 __int64 ans;
10 
11 void dp(int cur,int n)
12 {    
13     int i;
14     for(i=1;i<=n;i++)
15         l[i]=r[i]=i;
16     for(i=1;i<=n;i++)
17     {
18         if(map[cur][l[i]]<=map[cur][l[i]-1])
19             l[i]=l[l[i]-1];
20     }
21     for(i=n;i>=1;i--)
22     {
23         if(map[cur][r[i]]<=map[cur][r[i]+1])
24             r[i]=r[r[i]+1];
25     }
26 
27     for(i=1;i<=n;i++)
28         ans= max(ans,map[cur][i]*(r[i]-l[i]+1));    
29 
30 }
31 
32 int main()
33 {
34     int i,j,n,m,t;
35     scanf("%d",&t);
36     while(t--)
37     {
38         char c;
39         scanf("%d%d",&n,&m);
40         for(i=1;i<=n;i++) map[i][0]=-1;
41         map[n+1][0]=-2;                            //边界
42         for(i=1;i<=n;i++)
43         {
44             for(j=1;j<=m;j++)
45             {
46                 cin>>c;
47                 if(c=='R')
48                 {
49                     map[i][j]=0;
50                     map[i][0]=-2;                //-2记录这一行有R
51                 }
52                 else map[i][j]=map[i-1][j]+1;        //这里很重要,就是计算该F是其上的连续第几个F的;
53             }
54             map[i][j]=-1;
55         }
56         ans=0;
57         for(j=1;j<=n;j++)
58         {
59             if(map[j+1][0]==-2)                    //每次搜索只要从存在R的上面一行的开始
60                 dp(j,m);
61         }
62         printf("%I64d\n",ans*3);
63     }
64     return 0;
65 }
Sample Output
45
0
 
二维的多重背包,而上一个博客题目相似。想了半天不知道怎么写,上网看了人家的代码想了很久才懂了。
原文地址:https://www.cnblogs.com/shenshuyang/p/2646001.html