USACO 6.1.2 rectbarn

题目:

http://ace.delos.com/usacoprob2?a=JsPN70PkuJW&S=rectbarn

http://pingce.ayyz.cn:9000/usaco/data/20110129214306/rectbarn.html

 

A Rectangular Barn

Mircea Pasoi -- 2003

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 1x1 areas in the field are damaged, so he cannot build the barn on the entire RxC field.

FJ has counted P (0 ≤ P ≤ 30,000) damaged 1x1 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.

PROGRAM NAME: rectbarn

INPUT FORMAT

  • 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

SAMPLE INPUT (file rectbarn.in)

3 4 2
1 3
2 1

OUTPUT FORMAT

  • Line 1: The largest possible area of the new barn

SAMPLE OUTPUT (file rectbarn.out)

6

OUTPUT DETAILS

  1 2 3 4
 +-+-+-+-+
1| | |X| |
 +-+-+-+-+
2|X|#|#|#|
 +-+-+-+-+
3| |#|#|#|
 +-+-+-+-+

Pieces marked with 'X' are damaged and pieces marked with '#' are part of the new barn. 

 

题解:

  这题与03年王知昆的论文中所举的例子并无二异,论文当中给出了两种做法,一种是O(P^2)的,另一种是O(R*C)。本题由于数据范围的约束只能使用第二种悬线的NB的dp,详见论文。

 

View Code
 1 /*
 2 ID:zhongha1
 3 PROB:rectbarn
 4 LANG:C++
 5 */
 6 
 7 #include<cstdio>
 8 #include<cstdlib>
 9 #include<cstring>
10 #include<algorithm>
11 
12 using namespace std;
13 
14 const int maxn=3001;
15 
16 int n,m,p,ans,left[maxn],right[maxn],h[2][maxn],l[2][maxn],r[2][maxn];
17 
18 bool use[maxn][maxn];
19 
20 int main()
21 {
22     freopen("rectbarn.in","r",stdin);
23     freopen("rectbarn.out","w",stdout);
24 
25     scanf("%d%d%d",&n,&m,&p);
26     for (int a=1;a<=p;a++)
27     {
28         int x,y;
29         scanf("%d%d",&x,&y);
30         use[x][y]=true;
31     }
32     for (int a=1;a<=m;a++)
33         l[0][a]=1,r[0][a]=m;
34     for (int a=1;a<=n;a++)
35     {
36         int nowl=1;
37         for (int b=1;b<=m;b++)
38             if (use[a][b]) nowl=b+1;
39             else left[b]=nowl;
40         nowl=m;
41         for (int b=m;b>=1;b--)
42             if (use[a][b]) nowl=b-1;
43             else right[b]=nowl;
44         for (int b=1;b<=m;b++)
45             if (use[a][b])
46             {
47                 h[a % 2][b]=0;
48                 l[a % 2][b]=0;
49                 r[a % 2][b]=m;
50             }
51             else
52             {
53                 h[a % 2][b]=h[1-a % 2][b]+1;
54                 l[a % 2][b]=max(left[b],l[1-a % 2][b]);
55                 r[a % 2][b]=min(right[b],r[1-a % 2][b]);
56                 ans=max(h[a % 2][b]*(r[a % 2][b]-l[a % 2][b]+1),ans);
57             }
58     }
59     printf("%d\n",ans);
60 
61     return 0;
62 }

 

 

转载于:https://www.cnblogs.com/zhonghaoxi/archive/2012/07/01/2572125.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值