题目链接:uva 221 - Urban Elevations
题目大意:给出n个房子,每个房子给出西南角的坐标x,y,以及宽度w,长度d,高度h。问说从南边看可以看到基座房子。
解题思路:注意一座房子可能被多座房子挡住。暴力枚举,将有可能挡住当前房子的房子记录下来判断。
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
const int N = 105;
struct house {
int x, y, w, d, h, id;
void get(int f) {
scanf(