bzoj1038 瞭望塔【半平面交】

解题思路:

可以发现,可以看到所有区域的点都位于轮廓线的上半平面交内,如样例:

这里写图片描述

yy一下,发现最优修建地点就在轮廓线或半平面交的转折点的垂线与另一条的交点所组成的线段,由于是交错递增的,可以O(n)处理出。

这道题求半平面交时可以只用栈,因为后面的直线不可能与最前面的相交。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<ctime>
#include<queue>
#include<vector>
#include<set>
using namespace std;

int getint()
{
    int i=0,f=1;char c;
    for(c=getchar();(c!='-')&&(c<'0'||c>'9');c=getchar());
    if(c=='-')c=getchar(),f=-1;
    for(;c>='0'&&c<='9';c=getchar())i=(i<<3)+(i<<1)+c-'0';
    return i*f;
}

const int N=305;
const double eps=1e-8,INF=1e18;
struct point
{
    double x,y;
    point(){}
    point(double _x,double _y):
        x(_x),y(_y){}
    inline friend point operator + (const point &a,const point &b)
    {return point(a.x+b.x,a.y+b.y);}
    inline friend point operator - (const point &a,const point &b)
    {return point(a.x-b.x,a.y-b.y);}
    inline friend point operator * (const point &a,double b)
    {return point(a.x*b,a.y*b);}
    inline friend point operator / (const point &a,double b)
    {return point(a.x/b,a.y/b);}
    inline friend double operator * (point a,point b)
    {return a.x*b.y-a.y*b.x;}
}p[N],q[N];
struct line
{
    point st,ed;
    double ang;
    line(){}
    line(point _st,point _ed):st(_st),ed(_ed)
    {ang=(ed-st).y*1.0/(ed-st).x;}
    inline friend bool operator < (const line &a,const line &b)
    {
        if(abs(a.ang-b.ang)<eps)return (a.ed-a.st)*(b.ed-a.st)>0;
        return a.ang<b.ang;
    }
}sta[N],l[N];
int n,m,top,tot;

point getcross(line a,line b)
{
    double x=(a.ed-a.st)*(b.st-a.st);
    double y=(b.ed-a.st)*(a.ed-a.st);
    point t=b.st+(b.ed-b.st)*x/(x+y);
    return t;
}

bool right(point a,line b)
{
    return (b.ed-a)*(b.st-a)>=0;
}

void HPI()
{
    sort(l+1,l+n);
    l[++tot]=l[1];
    for(int i=2;i<n;i++)
    {
        if(abs(l[i].ang-l[i-1].ang)>eps)tot++;
        l[tot]=l[i];
    }
    sta[++top]=l[1],sta[++top]=l[2];
    for(int i=3;i<=tot;i++)
    {
        while(top>1&&right(getcross(sta[top],sta[top-1]),l[i]))top--;
        sta[++top]=l[i];
    }
    for(int i=1;i<top;i++)
        q[++m]=getcross(sta[i],sta[i+1]);
    q[++m]=point(INF,0);
}

void solve()
{
    double ans=INF;
    int i=1,j=1;
    while(i<=n&&j<=m)
    {
        if(p[i].x<q[j].x)
        {
            point t=getcross(sta[j],line(p[i],point(p[i].x,INF)));
            ans=min(ans,abs(t.y-p[i].y));
            i++;
        }
        else 
        {
            point t=getcross(line(p[i],p[i-1]),line(q[j],point(q[j].x,INF)));
            ans=min(ans,abs(t.y-q[j].y));
            j++;
        }
    }
    printf("%0.3f",ans);
}

int main()
{
    //freopen("lx.in","r",stdin);
    n=getint();
    for(int i=1;i<=n;i++)p[i].x=getint();
    for(int i=1;i<=n;i++)p[i].y=getint();
    for(int i=1;i<n;i++)
        l[i]=line(p[i],p[i+1]);
    HPI();
    solve();
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
BZOJ 2908 题目是一个数据下载任务。这个任务要求下载指定的数据文件,并统计文件中小于等于给定整数的数字个数。 为了完成这个任务,首先需要选择一个合适的网址来下载文件。我们可以使用一个网络爬虫库,如Python中的Requests库,来帮助我们完成文件下载的操作。 首先,我们需要使用Requests库中的get()方法来访问目标网址,并将目标文件下载到我们的本地计算机中。可以使用以下代码实现文件下载: ```python import requests url = '目标文件的网址' response = requests.get(url) with open('本地保存文件的路径', 'wb') as file: file.write(response.content) ``` 下载完成后,我们可以使用Python内置的open()函数打开已下载的文件,并按行读取文件内容。可以使用以下代码实现文件内容读取: ```python count = 0 with open('本地保存文件的路径', 'r') as file: for line in file: # 在这里实现对每一行数据的判断 # 如果小于等于给定整数,count 加 1 # 否则,不进行任何操作 ``` 在每一行的处理过程中,我们可以使用split()方法将一行数据分割成多个字符串,并使用int()函数将其转换为整数。然后,我们可以将该整数与给定整数进行比较,以判断是否小于等于给定整数。 最后,我们可以将统计结果打印出来,以满足题目的要求。 综上所述,以上是关于解决 BZOJ 2908 数据下载任务的简要步骤和代码实现。 希望对您有所帮助。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值