CCF_ 201409-2_画图
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_ 201409-2_画图相关的知识,希望对你有一定的参考价值。
将一个数组比作画板,有颜色的位置标1,统计即可。
#include<cstdio> #include<iostream> #define NUM 100 using namespace std; int main() { int n,a[105][105] = {0}; cin >> n; while(n--) { int x1,x2,y1,y2; cin >> x1 >> y1 >> x2 >> y2; for(int i = x1+1;i <= x2;i++) { for(int j = y1+1;j <= y2;j++) a[i][j] = 1; } } int num = 0; for(int i = 1;i <= NUM;i++) { for(int j = 1;j <= NUM;j++) { if(a[i][j]) num++; } } cout << num << endl; return 0; }
以上是关于CCF_ 201409-2_画图的主要内容,如果未能解决你的问题,请参考以下文章