比赛 |
20161116 |
评测结果 |
AAAAAAAAAA |
题目名称 |
删除他们! |
最终得分 |
100 |
用户昵称 |
最长上升子序列 |
运行时间 |
0.407 s |
代码语言 |
C++ |
内存使用 |
1.14 MiB |
提交时间 |
2016-11-16 12:08:25 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#define lnt long long
using namespace std;
const int maxN=100+5;
const int maxM=1000000+5;
int n,m,q,x,x1,y,y1,cnt=0;
bool Ais[maxM];
int kount;
int main()
{
freopen("deleteit.in","r",stdin);
freopen("deleteit.out","w",stdout);
scanf("%d%d%d",&n,&m,&q);
cnt=n*m;
for(int t=0;t<q;t++)
{
scanf("%d%d%d%d",&x,&y,&x1,&y1);
for(int i=x;i<=x1;i++)
{
int u=i*m;
for(int j=y;j<=y1;j++) Ais[u+j]=1;
}
kount=0;
for(int i=0;i<cnt;i++)
if(Ais[i]==0) Ais[kount++]=0;
cnt=kount;
}
cout<<kount;
return 0;
}