201409-2 画图

29 篇文章 0 订阅
22 篇文章 1 订阅

memset包含在cstring头文件中,否者编译错误

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;

const int N = 100;
bool flag[N + 10][N + 10];

struct Rectangle {
	int x1, y1, x2, y2;

	int getNum() {
		return (x2 - x1) * (y2 - y1);
	}
} r[N + 10];

int main() {
	int n;
	cin >> n;

	int cnt = 0;
	memset(flag, false, sizeof(flag));
	for (int i = 0; i < n; ++i) {
		cin >> r[i].x1 >> r[i].y1 >> r[i].x2 >> r[i].y2;

		cnt += r[i].getNum();
		for (int j = r[i].x1 + 1; j <= r[i].x2; ++j) {
			for (int k = r[i].y1 + 1; k <= r[i].y2; ++k) {
				if (flag[j][k]) {
					--cnt;
				} else {
					flag[j][k] = true;
				}
			}
		}
	}
	cout << cnt;

	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值