记录编号 |
454016 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[WC 2002] 奶牛浴场 |
最终得分 |
100 |
用户昵称 |
FoolMike |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.241 s |
提交时间 |
2017-09-28 08:46:19 |
内存使用 |
0.33 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
const int N=5010;
typedef pair<int,int> pii;
int n,m,k;
pair<int,int> p[N];
int main()
{
freopen("wc2002_happy.in","r",stdin);
freopen("wc2002_happy.out","w",stdout);
scanf("%d%d%d",&n,&m,&k);
for (int i=1;i<=k;i++) scanf("%d%d",&p[i].first,&p[i].second);
p[++k]=pii(0,0);
p[++k]=pii(n,m);
sort(p+1,p+k+1);
int ans=0;
for (int l=1;l<k;l++){
int L=0,R=m;
ans=max(ans,(p[l+1].first-p[l].first)*m);
for (int r=l+1;r<k;r++){
if (p[r].second<=p[l].second) L=max(L,p[r].second);
if (p[r].second>=p[l].second) R=min(R,p[r].second);
ans=max(ans,(p[r+1].first-p[l].first)*(R-L));
}
}
printf("%d\n",ans);
return 0;
}