标签:
6 4 2
1 1 2 4
1 3 5 4
14
#include<iostream> #include<cstring> #include<cstdio> #include<algorithm> #define inf 1000000000 using namespace std; int x,y,l; int x1,x2,y1,y2; bool f[225][225]; int ans=0; int main() { scanf("%d%d%d",&x,&y,&l); for(int i=1;i<=l;i++) { scanf("%d%d%d%d",&x1,&y1,&x2,&y2); for(int j=x1;j<=x2;j++) { for(int k=y1;k<=y2;k++) { if(!f[j][k]) { f[j][k]=1; ans++; } } } } cout<<ans; puts(""); return 0; }
标签:
原文地址:http://www.cnblogs.com/gc812/p/5796305.html