【几何---正方形覆盖】hdu 4007

本文探讨了HDU 4007题目中关于几何形状的正方形覆盖问题,采用暴力算法进行求解,详细阐述了如何确定左右边界,并在遍历Y轴坐标时实施有效的剪枝策略,以优化解决方案。
摘要由CSDN通过智能技术生成

暴力,先确定左右边界,再遍历y,注意剪枝

#include <list>
#include <map>
#include <set>
#include <queue>
#include <string>
#include <deque>
#include <stack>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <limits.h>
#include <time.h>
#include <string.h>
using namespace std;

#define LL long long
#define PI acos(-1.0)
#define MAX INT_MAX
#define MIN INT_MIN
#define eps 1e-8
#define FRE freopen("a.txt","r",stdin)
#define MOD 1000000007
#define N  1004
int n;
struct point{
    int x,y;
}p[N];
int ll;
int Y[N];
bool cmp(point a,point b){
    return a.x<b.x;
}
int gao(int l,int r){
    int i,j;
    int cnt=0;
    for(i=0;i<n;i++){
        if(p[i].x>=l && p[i].x<=r)
        Y[cnt++]=p[i].y;
    }
    sort
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值