That Nice Euler Circuit

来源:互联网 发布:百电通电话软件 编辑:程序博客网 时间:2024/06/06 20:55

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 you - to draw a graph on a paper without lifting your pen, and finally return to the original position. Euler proved that you could do this if and only if the (planar) graph you created has the following two properties: (1) The graph is connected; and (2) Every vertex in the graph has even degree.


Joey's Euler machine works exactly like this. The device consists of a pencil touching the paper, and a control center issuing a sequence of instructions. The paper can be viewed as the infinite two-dimensional plane; that means you do not need to worry about if the pencil will ever go off the boundary.

In the beginning, the Euler machine will issue an instruction of the form(X0, Y0) which moves the pencil to some starting position(X0, Y0). Each subsequent instruction is also of the form(X', Y'), which means to move the pencil from the previous position to the new position(X', Y'), thus draw a line segment on the paper. You can be sure that the new position is different from the previous position for each instruction. At last, the Euler machine will always issue an instruction that move the pencil back to the starting position (X0, Y0). In addition, the Euler machine will definitely not draw any lines that overlay other lines already drawn. However, the lines may intersect.

After all the instructions are issued, there will be a nice picture on Joey's paper. You see, since the pencil is never lifted from the paper, the picture can be viewed as an Euler circuit.

Your job is to count how many pieces (connected areas) are created on the paper by those lines drawn by Euler.

Input

There are no more than 25 test cases. Ease case starts with a line containing an integerN$ \ge$4, which is the number of instructions in the test case. The followingN pairs of integers give the instructions and appear on a single line separated by single spaces. The first pair is the first instruction that gives the coordinates of the starting position. You may assume there are no more than 300 instructions in each test case, and all the integer coordinates are in the range (-300, 300). The input is terminated whenN is 0.

Output

For each test case there will be one output line in the format


Case x: There are w pieces.,


where x is the serial number starting from 1.


Note: The figures below illustrate the two sample input cases.

\epsfbox{p3263.eps}

Sample Input

50 0 0 1 1 1 1 0 0 0 7 1 1 1 5 2 1 2 5 5 1 3 5 1 1 0

Sample Output

Case 1: There are 2 pieces. Case 2: There are 5 pieces.

题意:给出n个点第一个和最后一个点事相同的。问把这些点依次连接起来能够把这个平面分成多少个区域;

在欧拉定理中:面,边,点的个数满足  面的数量 + 点的数量 - 边的数量 = 2;

那么此题就可以变为求出有多少条线段和多少个点;就可以得出有多少个面;

# include <cstdio># include <cmath># include <iostream># include <algorithm>using namespace std;const double eps=1e-10;int dcmp( double x){    if(fabs(x)< eps)  return 0;    else  return x > 0 ? 1 : -1;}struct Point{    double x,y;    Point (double x=0,double y=0) :x(x),y(y)  { }};typedef Point Vector;Vector operator + (const Vector& a,const Vector& b) { return Vector(a.x+b.x,a.y+b.y);}Vector operator - (const Point& a,const Point &b) { return Vector(a.x-b.x,a.y-b.y);}Vector operator * (const Vector& a,double p)       { return Vector(a.x*p,a.y*p);}bool operator < (const Point &a,const Point &b){    return a.x < b.x || (a.x ==b.x &&a.y< b.y);}bool operator == (const Point &a,const Point &b){    return dcmp(a.x-b.x)==0 && dcmp(a.y-b.y) ==0 ;}double Dot(const Vector &a,const Vector& b)    { return a.x*b.x+a.y*b.y; }double Cross(const Vector& a,const Vector& b)  { return a.x*b.y-b.x*a.y; }Point GetLineIntersection(const Point& P,const Vector& v,const Point& Q,const Vector & w){    Vector u=P-Q;    double t=Cross(w,u)/Cross(v,w);    return P+v*t;}bool SegmentProperIntersection(const Point a1,const Point a2,const Point b1,const Point b2){    double c1=Cross(a2-a1,b1-a1),c2=Cross(a2-a1,b2-a1),    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(const Point p,const Point a1,const Point a2){    //根据向量自己画画就知道了;    return dcmp(Cross(a1-p,a2-p))==0 && dcmp(Dot(a1-p,a2-p))<0;}const int maxn=320;Point p[maxn],v[maxn*maxn];int main( ){    int n,kase=0;    while(cin>>n&&n)    {        int i,j;        for(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(i=0;i<n;i++)            for(j=i+1;j<n;j++)                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(i=0;i<c;i++)            for(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);    }    return 0;}


0 0
原创粉丝点击