例题4.2 好看的一笔画 LA3263

1.题目描述:点击打开链接

2.解题思路:本题利用欧拉定理解决,设顶点数,边数,面数分别是V,E,F,则V+F-E=2。因此,F=E+2-V。我们只需要求解E和V的个数即可。V的个数:除了题目中输入的点,还有两两线段相交得到的新点,由于可能出现三线共点的情况,因此最后对于顶点还要使用一下unique函数去重。对于E的个数,首先是输入的n条边(因为是一笔画构成,那么n个点会连出n条边),接下来是去重后的顶点集中,由于一个顶点在一条线段上而产生的新的边,此时我们可以枚举每一个顶点,再枚举每一条线段,如果顶点在线段上,那么个数+1.即可得到最终边的个数,套用公式即可得到答案。

3.代码:

//#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<iostream>
#include<algorithm>
#include<cassert>
#include<string>
#include<sstream>
#include<set>
#include<vector>
#include<stack>
#include<map>
#include<queue>
#include<deque>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime>
#include<cctype>
#include<functional>
using namespace std;

#define me(s)  memset(s,0,sizeof(s))
typedef long long ll;
typedef unsigned int uint;
typedef unsigned long long ull;
//typedef pair <int, int> P;

struct Point
{
    double x,y;
    Point(double x=0,double y=0):x(x),y(y){}
    bool operator<(const Point&b)const
    {
        return x<b.x||(x==b.x&&y<b.y);
    }
};

typedef Point Vector;
Vector operator+(Vector A,Vector B)
{
    return Vector(A.x+B.x,A.y+B.y);
}

Vector operator-(Vector A,Vector B)
{
    return Vector(A.x-B.x,A.y-B.y);
}

Vector operator*(Vector A,double p)
{
    return Vector(A.x*p,A.y*p);
}
Vector operator/(Vector A,double p)
{
    return Vector(A.x/p,A.y/p);
}

const double eps=1e-10;
int dcmp(double x)
{
    if(fabs(x)<eps)return 0;
    else return x<0?-1:1;
}

bool operator==(const Point&a,const Point&b)
{
    return dcmp(a.x-b.x)==0&&dcmp(a.y-b.y)==0;
}

double Dot(Vector A,Vector B)
{
    return A.x*B.x+A.y*B.y;
}
double Length(Vector A)
{
    return sqrt(Dot(A,A));
}
double Angle(Vector A,Vector B)
{
    return acos(Dot(A,B)/Length(A)/Length(B));
}

double Cross(Vector A,Vector B)
{
    return A.x*B.y-A.y*B.x;
}

double Area2(Point A,Point B,Point C)
{
    return Cross(B-A,C-A);
}

Vector Rotate(Vector A,double rad)
{
    return Vector(A.x*cos(rad)-A.y*sin(rad),A.x*sin(rad)+A.y*cos(rad));
}

Point GetLineIntersection(Point P,Vector v,Point Q,Vector w)
{
    Vector u=P-Q;
    double t=Cross(w,u)/Cross(v,w);
    return P+v*t;
}

bool SegmentProperIntersection(Point a1,Point a2,Point b1,Point b2)
{
    double c1=Cross(a2-a1,b1-a1),c2=Cross(a2-a1,b2-a1);
    double c3=Cross(b2-b1,a1-b1),c4=Cross(b2-b1,a2-b1);
    return dcmp(c1)*dcmp(c2)<0&&dcmp(c3)*dcmp(c4)<0;
}

bool OnSegment(Point p,Point a1,Point a2)
{
    return dcmp(Cross(a1-p,a2-p))==0&&dcmp(Dot(a1-p,a2-p))<0;
}

/*=======================================================*/

const int N=300+10;
Point P[N],V[N*N];

int main()
{
    int n,kase=0;
    while(~scanf("%d",&n)&&n)
    {
        for(int i=0;i<n;i++)
        {
            scanf("%lf%lf",&P[i].x,&P[i].y);//注意,读入的最后一个点是起点,但这里不删除它,因为枚举线段时候需要
            V[i]=P[i];
        }
        n--;  //注意:由于输入的最后一个点是起点,不应该算入!
        int c=n,e=n;
        for(int i=0;i<n;i++)
            for(int j=i+1;j<n;j++)       //注意枚举的时候j从i+1开始
            if(SegmentProperIntersection(P[i],P[i+1],P[j],P[j+1]))//统计规范相交产生的交点,因为不规范的交点一定是输入的顶点
                V[c++]=GetLineIntersection(P[i],P[i+1]-P[i],P[j],P[j+1]-P[j]);  //得到的第一个交点自动把最后复制的起点替换掉了,即使没有多余的新点,在去重操作中它也会被去掉
        sort(V,V+c);
        c=unique(V,V+c)-V; //由于可能存在三线共点,因此要对顶点集去重
        for(int i=0;i<c;i++)
            for(int j=0;j<n;j++)//枚举顶点和所有线段,看顶点是否在线段上,如果是,则产生一条新的边
            if(OnSegment(V[i],P[j],P[j+1]))e++;
            printf("Case %d: There are %d pieces.\n",++kase,e+2-c);
    }
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-12 22:34:43

例题4.2 好看的一笔画 LA3263的相关文章

LA 3263 好看的一笔画 欧拉几何+计算几何模板

题意:训练指南260 #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> #include <cmath> using namespace std; struct Point { double x, y; Point(double x = 0, double y = 0) : x(x) , y(y) { } }; typedef Point V

计算几何初步(刷蓝书)

头文件 #include<bits/stdc++.h> #define max(a,b) (a>b?a:b) #define min(a,b) (a<b?a:b) using namespace std; typedef long long ll; const int maxn = 1e3+7; const double esp = 1e-6; int dcmp(double x){ if(fabs(x)<esp)return 0; return x<0?-1:1; }

1341:【例题】一笔画问题

[题目描述] 如果一个图存在一笔画,则一笔画的路径叫做欧拉路,如果最后又回到起点,那这个路径叫做欧拉回路. 根据一笔画的两个定理,如果寻找欧拉回路,对任意一个点执行深度优先遍历:找欧拉路,则对一个奇点执行dfs,时间复杂度为O(m+n),m为边数,n是点数. [输入] 第一行n,m,有n个点,m条边,以下m行描述每条边连接的两点. [输出] 欧拉路或欧拉回路,输出一条路径即可. [输入样例] 5 5 1 2 2 3 3 4 4 5 5 1 [输出样例] 1 5 4 3 2 1 欧拉路度数是奇数时

acm常见算法及例题

转自:http://blog.csdn.net/hengjie2009/article/details/7540135 acm常见算法及例题 初期:一.基本算法:     (1)枚举. (poj1753,poj2965)     (2)贪心(poj1328,poj2109,poj2586)     (3)递归和分治法.     (4)递推.     (5)构造法.(poj3295)     (6)模拟法.(poj1068,poj2632,poj1573,poj2993,poj2996)二.图算法

如何编辑好看的微信文章微助点微信编辑

微助点微信编辑器,是一款"素材最多,最好用"的微信图文编辑工具,丰富素材样式任您挑选,调整颜色.排版更简单,为您提供好看.易读的文章是我们动力!下面给您具体介绍微助点微信编辑器. 1.编辑器网站框架 怎么样?看起来简单大气吧,微助点编辑器操作起来也和他的界面一样简单方便,还有更多的文本.标题.分割线.内容等素材可以供大家选择使用.再来看看其他素材的截图 更多的素材可访问微助点官方网站微助点官方网址

黑书例题 Fight Club 区间DP

题目可以在bnuoj.soj等OJ上找到. 题意: 不超过40个人站成一圈,只能和两边的人对战.给出任意两人对战的输赢,对于每一个人,输出是否可能是最后的胜者. 分析: 首先序列扩展成2倍,破环成链. dp[i][j]表示i和j能够相遇对打,那么dp[i][i+n]为真代表可以成为最后胜者. 枚举中间的k,若i和j都能和k相遇,且i和j至少一人能打赢k,那么i和j可以相遇. 复杂度o(n^3) 1 #include<cstdio> 2 #include<cstring> 3 usi

设计:好看的数字字体

1.方正小标宋简体 下载 持续更新.... 设计:好看的数字字体,布布扣,bubuko.com

【技能】使用纯CSS+html写出方向箭头,简单大方,好看

使用纯CSS+html写出方向箭头,贴出来就可以用,100%原创 <html> <head> <title></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <style type="text/css"> .pointsRule{ display: inline-blo

linux脚本进阶例题解析

例题一:编写脚本/root/bin/createuser.sh,实现如下功能: 使用一个用户名做为参数,如果指定参数的用户存在,就显示其存在,否则添加之:并生成8位随机口令并存在一个文件中,初步提示改口令,显示添加的用户的id号等信息 #!/bin/bash # ------------------------------------------ # Filename: useradd.sh  # Revision: null # Date: 2017-09-11 21:47:22 # Auth