uvalive 3263 That Nice Euler Circuit

题意:平面上有一个包含n个端点的一笔画,第n个端点总是和第一个端点重合,因此团史一条闭合曲线。组成一笔画的线段可以相交,但是不会部分重叠。求这些线段将平面分成多少部分(包括封闭区域和无限大区域)。

分析:若是直接找出所有区域,或非常麻烦,而且容易出错。但用欧拉定理可以将问题进行转化,使解法变容易。

欧拉定理:设平面图的顶点数、边数和面数分别为V,E,F,则V+F-E=2。

这样,只需求出顶点数V和边数E,就可以求出F=E+2-V。

设平面图的结点由两部分组成,即原来的结点和新增的结点。由于可能出现三线共点,需要删除重复的点。

  1 #include<cstdio>
  2 #include<cmath>
  3 #include<cstring>
  4 #include<algorithm>
  5 #include<iostream>
  6 #include<memory.h>
  7 #include<cstdlib>
  8 #include<vector>
  9 #define clc(a,b) memset(a,b,sizeof(a))
 10 #define LL long long int
 11 using namespace std;
 12 const int inf=0x3f3f3f3f;
 13 const double eps = 1e-10;
 14 const int N = 300 + 5;
 15
 16 struct Point
 17 {
 18     double x, y;
 19     Point(double x = 0, double y = 0) : x(x), y(y) { }
 20 };
 21
 22 typedef Point Vector;
 23
 24 Vector operator + (Vector A, Vector B)
 25 {
 26     return Vector(A.x + B.x, A.y + B.y);
 27 }
 28
 29 Vector operator - (Point A, Point B)
 30 {
 31     return Vector(A.x - B.x, A.y - B.y);
 32 }
 33
 34 Vector operator * (Vector A, double p)
 35 {
 36     return Vector(A.x * p, A.y * p);
 37 }
 38
 39 Vector operator / (Vector A, double p)
 40 {
 41     return Vector(A.x/p, A.y/p);
 42 }
 43
 44 bool operator < (const Point& a, const Point& b)
 45 {
 46     return a.x < b.x || (a.x == b.x && a.y < b.y);
 47 }
 48
 49 int dcmp(double x)
 50 {
 51     if(fabs(x) < eps)
 52         return 0;
 53     else
 54     return x < 0 ? -1 : 1;
 55 }
 56
 57 bool operator == (const Point& a, const Point& b)
 58 {
 59     return dcmp(a.x - b.x) == 0 && dcmp(a.y - b.y) == 0;
 60 }
 61
 62 double Dot(Vector A, Vector B)
 63 {
 64     return A.x * B.x + A.y * B.y;
 65 }
 66
 67 double Cross(Vector A, Vector B)
 68 {
 69     return A.x * B.y - A.y * B.x;
 70 }
 71
 72 Point GetLineIntersection(Point P, Vector v, Point Q, Vector w)
 73 {
 74     Vector u = P - Q;
 75     double t = Cross(w, u) / Cross(v, w);
 76     return P + v * t;
 77 }
 78
 79 bool SegmentProperIntersection(Point a1, Point a2, Point b1, Point b2)
 80 {
 81     double c1 = Cross(a2-a1, b1-a1), c2 = Cross(a2-a1, b2-a1),
 82            c3 = Cross(b2-b1, a1-b1), c4 = Cross(b2-b1, a2-b1);
 83     return dcmp(c1) * dcmp(c2) < 0 && dcmp(c3) * dcmp(c4) < 0;
 84 }
 85
 86 bool OnSegment(Point p, Point a1, Point a2)
 87 {
 88     return dcmp(Cross(a1-p, a2-p)) == 0 && dcmp(Dot(a1-p, a2-p)) < 0;
 89 }
 90
 91 Point P[N], V[N*N];
 92
 93 int main()
 94 {
 95     int n, cas = 0;
 96     while(~scanf("%d",&n) && n)
 97     {
 98         for(int i = 0; i < n; i++)
 99         {
100             scanf("%lf%lf", &P[i].x, &P[i].y);
101             V[i] = P[i];
102         }
103         n--;
104         int vcnt = n, ecnt = n;
105         for(int i = 0; i < n; i++)
106             for(int j = i + 1; j < n; j++)
107             {
108                 if(SegmentProperIntersection(P[i], P[i+1], P[j], P[j+1]))
109                     V[vcnt++] = GetLineIntersection(P[i], P[i+1]-P[i], P[j], P[j+1]-P[j]);
110             }
111         sort(V, V+vcnt);
112         vcnt = unique(V, V+vcnt) - V;//去掉相邻元素中重复的,使用前先排序
113         for(int i = 0; i < vcnt; i++)
114             for(int j = 0; j < n; j++)
115                 if(OnSegment(V[i], P[j], P[j+1]))
116                     ecnt++;
117         int ans = ecnt + 2 - vcnt;
118         printf("Case %d: There are %d pieces.\n", ++cas, ans);
119     }
120     return 0;
121 }

时间: 2025-01-01 06:25:32

uvalive 3263 That Nice Euler Circuit的相关文章

UVALive - 3263 That Nice Euler Circuit (几何)

UVALive - 3263 That Nice Euler Circuit (几何) ACM 题目地址: UVALive - 3263 That Nice Euler Circuit 题意: 给出一个点,问连起来后的图形把平面分为几个区域. 分析: 欧拉定理有:设平面图的顶点数.边数.面数分别V,E,F则V+F-E=2 大白的题目,做起来还是很有技巧的. 代码: /* * Author: illuz <iilluzen[at]gmail.com> * File: LA3263.cpp * C

UVALive - 3263 - That Nice Euler Circuit (计算几何~~)

UVALive - 3263 That Nice Euler Circuit Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description Little Joey invented a scrabble machine that he called Euler, after the great mathematician. In his primary sch

UVALive 3263 That Nice Euler Circuit 计算几何欧拉定理

欧拉定理:P+F-E=2 That Nice Euler Circuit Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description Little Joey invented a scrabble machine that he called Euler, after the great mathematician. In his primary schoo

平面上欧拉定理:poj 2284( LA 3263 ) That Nice Euler Circuit

3263 - That Nice Euler Circuit Time limit: 3.000 seconds Description Little Joey invented a scrabble machine that he called Euler, after the great mathematician. In his primary school Joey heard about the nice story of how Euler started the study abo

简单几何(求划分区域) LA 3263 That Nice Euler Circuit

题目传送门 题意:一笔画,问该图形将平面分成多少个区域 分析:训练指南P260,欧拉定理:平面图定点数V,边数E,面数F,则V + F - E =  2.那么找出新增的点和边就可以了.用到了判断线段相交,求交点,判断点在线上 /************************************************ * Author :Running_Time * Created Time :2015/10/22 星期四 09:10:09 * File Name :LA_3263.cpp

poj2284 That Nice Euler Circuit(欧拉公式)

题目链接:poj2284 That Nice Euler Circuit 欧拉公式:如果G是一个阶为n,边数为m且含有r个区域的连通平面图,则有恒等式:n-m+r=2. 欧拉公式的推广: 对于具有k(k≥2)个连通分支的平面图G,有:n-m+r=k+1. 题意:给出连通平面图的各顶点,求这个欧拉回路将平面分成多少区域. 题解:根据平面图的欧拉定理“n-m+r=2”来求解区域数r. 顶点个数n:两两线段求交点,每个交点都是图中的顶点. 边数m:在求交点时判断每个交点落在第几条边上,如果一个交点落在

UVA LIVE-3263 - That Nice Euler Circuit

画一个顶点为偶数的封闭的二维图,当然.这个图能够自交,给出画的过程中的一些轨迹点.求出这个图把二次元分成了几部分,比如三角形把二次元分成了两部分. 这个的话,有图中顶点数+部分数-棱数=2的定律,这是核心思想.也就是所谓的欧拉定律拓扑版,好吧,事实上细致想想也是可以想出这个规律来的. 做出这题纯属意外,因为给的点的坐标全是用整数表示,为了不用考虑精度问题,一開始.我就想仅仅用这些点.就是说不再算出其他交点之类的,就把答案算出, 由于当前轨迹与之前轨迹无非三种情况:规范与不规范相交,不相交 不相交

【UVA】1342 - That Nice Euler Circuit(几何+欧拉定理)

E 为边数 ,V 为点数,F为面数 那么 F = E + 2 - V(其中包括了一个无限大的面) 这道题被自己的习惯坑了一下#define MAXD 300 + 10 和#define MAXD 310 是不一样的 14113235 1342 That Nice Euler Circuit Accepted C++ 0.082 2014-08-29 15:12:20 自己的代码: #include<cstdio> #include<cstring> #include<iost

UVa 10735 (混合图的欧拉回路) Euler Circuit

题意: 给出一个图,有的边是有向边,有的是无向边.试找出一条欧拉回路. 分析: 按照往常的思维,遇到混合图,我们一般会把无向边拆成两条方向相反的有向边. 但是在这里却行不通了,因为拆成两条有向边的话,就表示这个边能“在两个相反方向各经过一次”. 而题意是这个边只能经过一次. 假设图中存在欧拉回路,则所有点的出度out(i) 等于 入度in(i) 不妨这样,先将所有的无向边任意定向,对于out(u) > in(u)的点,可以将已经定向的无向边u->v反向为v->u,这样out(u) - i