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:在求交点时判断每个交点落在第几条边上,如果一个交点落在一条边上,这条边就分裂成两条边,边数加一。

学习之路漫漫啊。。

看懂了书上例题再敲的,我基础差就是累哦、、

 1 #include<cstdio>
 2 #include<cmath>
 3 #include<queue>
 4 #include<cstring>
 5 #include<algorithm>
 6 using namespace std;
 7
 8 const double eps = 1e-9;
 9 const int N = 90001;
10
11 struct point{//点
12     double x, y;
13     point(double _x = 0, double _y = 0): x(_x), y(_y){}
14 };
15
16 struct lineSegment{//线段
17     point s, e;
18     lineSegment(point s, point e): s(s), e(e){}
19 };
20 struct line{//直线
21     double a, b, c;
22 };
23 bool operator < (point p1, point p2){
24     return p1.x < p2.x || p1.x == p2.x && p1.y < p2.y;
25 }
26 bool operator == (point p1, point p2){
27     return abs(p1.x - p2.x) < eps && abs(p1.y - p2.y) < eps;
28 }
29 bool onLine(lineSegment l, point p){//判断点是否在线段上
30     return abs((l.e.x - l.s.x)*(p.y - l.s.y) - (p.x - l.s.x)*(l.e.y - l.s.y)) < eps //点在直线上
31     && (p.x - l.s.x) * (p.x - l.e.x) < eps && (p.y - l.s.y) * (p.y - l.e.y) < eps;//点在线段内
32 }
33 line make_Line(point p1, point p2){//将线段延长为直线
34     line l;
35     l.a = (p2.y > p1.y) ? p2.y - p1.y : p1.y - p2.y;
36     l.b = (p2.y > p1.y) ? p1.x - p2.x : p2.x - p1.x;
37     l.c = (p2.y > p1.y) ? p1.y * p2.x - p1.x * p2.y : p1.x * p2.y - p1.y * p2.x;
38     return l;
39 }
40 //判断直线是否相交,并求交点p
41 bool line_Intersect(line l1, line l2, point &p){
42     double d = l1.a * l2.b - l2.a * l1.b;
43     if(abs(d) < eps) return false; //叉积为0,平行或重合
44     p.x = (l2.c * l1.b - l1.c * l2.b) /d;
45     p.y = (l2.a * l1.c - l1.a * l2.c) /d;
46     return true;
47 }
48 //判断线段是否相交
49 bool lineSegment_Intersect(lineSegment l1, lineSegment l2, point &p){
50     line a, b;
51     a = make_Line(l1.s, l1.e);//将线段延长为直线
52     b = make_Line(l2.s, l2.e);
53     if(line_Intersect(a, b, p))//如果直线相交
54         //判断直线交点是否在线段上,是则线段相交
55         return onLine(l1, p) && onLine(l2, p);
56     else return false;
57 }
58
59 point p[N], intersection[N];
60 int n, m;
61
62 int main(){
63     int nn, i, j, kase = 1;
64     while(scanf("%d", &nn) && nn){
65         n = m = 0;
66         for(i = 0; i < nn; ++i)
67             scanf("%lf %lf", &p[i].x, &p[i].y);
68         for(i = 0; i < nn; ++i){
69             for(j = 0; j < nn; ++j){
70                 if(i == j) continue;
71                 lineSegment l1(p[i], p[(i+1)%nn]), l2(p[j], p[(j+1)%nn]);
72                 point v;
73                 if(lineSegment_Intersect(l1, l2, v))
74                     intersection[n++] = v;//记录交点
75             }
76         }
77         sort(intersection , intersection + n);
78         //移除重复点
79         n = unique(intersection, intersection + n) - intersection;
80         for(i = 0; i < n; ++i){
81             for(j = 0; j < nn; ++j){
82                 lineSegment l3(p[j], p[(j+1)%nn]);
83                 //若有交点落在边上,则该边分裂成两条边
84                 if(onLine(l3, intersection[i]) && !(l3.s == intersection[i]))
85                     m++;
86             }
87         }
88         printf("Case %d: There are %d pieces.\n", kase++, 2 + m - n);
89     }
90     return 0;
91 }

时间: 2024-10-12 14:34:29

poj2284 That Nice Euler Circuit(欧拉公式)的相关文章

POJ2284 That Nice Euler Circuit (欧拉公式)(计算几何 线段相交问题)

That Nice Euler Circuit Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 1977   Accepted: 626 Description Little Joey invented a scrabble machine that he called Euler, after the great mathematician. In his primary school Joey heard about

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

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

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

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

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

That Nice Euler Circuit

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 about graphs. The problem in that story was - let me remind

LA 3236 That Nice Euler Circuit(欧拉定理)

That Nice Euler Circuit Timelimit:3.000 seconds 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 about graphs. The proble

UVA 10735 Euler Circuit

题意:求混合图的欧拉路径. 这题的困难之处在于无向边只能用一次,相当于一个方向未定的有向边. 首先用并查集判断图的连通性,(直接计数O(1),做1395 Slim Span学到的技巧). 我们知道有向图的欧拉路径存在的充要条件是最多两个点的入度不等于出度,而且相差为1,这题不需要考虑这种情况,只需要所有点的入度等于出度就行了. 对于无向边,一开始可以随意确定一个方向.这样不能保证所有点的入度等于出度,但是可以想办法调整. 比如说u->v,那么如果改变方向的话,就相当于把一个出度运输给了v. 这让