码迷,mamicode.com
首页 > 其他好文 > 详细

CCF_ 201409-2_画图

时间:2016-09-05 20:47:44      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

将一个数组比作画板,有颜色的位置标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_画图

标签:

原文地址:http://www.cnblogs.com/zhurb/p/5843330.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!