【问题描述】
w*h的格子画了n条或垂直或水平宽度为1的直线,求出这些格子被划分成了多少个4连块(上、下、左、右连通)。
【输入格式】
第一行包含两个整数:w和h,表示矩阵的列数和行数(行列编号都从1开始)。
第二行包含一个整数n,表示有n条直线。
接下来的n行,每行包含四个整数:x1,y1,x2,y2,表示一条直线的列号和行号。
【输出格式】
一个整数,表示区域数量。
【输入样例】
10 10
5
1 4 6 4
1 8 10 8
4 1 4 10
9 1 9 5
10 6 10 10
【输出样例】
6
【数据范围】
1<=w,h<=1000000 , 1<=n<=500
【来源】
挑战程序设计竞赛(第2版)164页
思路:因为w*h的值太大,考虑离散化压缩w和h的值,建立新的棋盘。然后BFS求连通分量数即可。
/*
Name: Zuo_Biao_Li_San_Hua
Copyright: Twitter & Instagram @stevebieberjr
Author: @stevebieberjr
Date: 20/07/16 19:48
*/
#include<cstdio>
#include<cstring>
#include<queue>
#include<algorithm>
#include<vector>
#define maxn 505
using namespace std;
int w,h,n;
int x1[maxn],y1[maxn],x2[maxn],y2[maxn];