POJ 1696Space Ant Graham-scan

来源:互联网 发布:java有指针吗 编辑:程序博客网 时间:2024/05/17 22:45
H - Space Ant
Time Limit:1000MS     Memory Limit:10000KB     64bit IO Format:%I64d & %I64u
Submit Status Practice POJ 1696
Appoint description: 

Description

The most exciting space discovery occurred at the end of the 20th century. In 1999, scientists traced down an ant-like creature in the planet Y1999 and called it M11. It has only one eye on the left side of its head and just three feet all on the right side of its body and suffers from three walking limitations: 
  1. It can not turn right due to its special body structure. 
  2. It leaves a red path while walking. 
  3. It hates to pass over a previously red colored path, and never does that.

The pictures transmitted by the Discovery space ship depicts that plants in the Y1999 grow in special points on the planet. Analysis of several thousands of the pictures have resulted in discovering a magic coordinate system governing the grow points of the plants. In this coordinate system with x and y axes, no two plants share the same x or y
An M11 needs to eat exactly one plant in each day to stay alive. When it eats one plant, it remains there for the rest of the day with no move. Next day, it looks for another plant to go there and eat it. If it can not reach any other plant it dies by the end of the day. Notice that it can reach a plant in any distance. 
The problem is to find a path for an M11 to let it live longest. 
Input is a set of (x, y) coordinates of plants. Suppose A with the coordinates (xA, yA) is the plant with the least y-coordinate. M11 starts from point (0,yA) heading towards plant A. Notice that the solution path should not cross itself and all of the turns should be counter-clockwise. Also note that the solution may visit more than two plants located on a same straight line. 

Input

The first line of the input is M, the number of test cases to be solved (1 <= M <= 10). For each test case, the first line is N, the number of plants in that test case (1 <= N <= 50), followed by N lines for each plant data. Each plant data consists of three integers: the first number is the unique plant index (1..N), followed by two positive integers x and y representing the coordinates of the plant. Plants are sorted by the increasing order on their indices in the input file. Suppose that the values of coordinates are at most 100.

Output

Output should have one separate line for the solution of each test case. A solution is the number of plants on the solution path, followed by the indices of visiting plants in the path in the order of their visits.

Sample Input

2101 4 52 9 83 5 94 1 75 3 26 6 37 10 108 8 19 2 410 7 6141 6 112 11 93 8 74 12 85 9 206 3 27 1 68 2 139 15 110 14 1711 13 1912 5 1813 7 314 10 16

Sample Output

10 8 7 3 4 9 5 6 2 1 1014 9 10 11 5 12 8 7 6 13 4 14 1 3 2
给你 n个点求一个逆时针的螺旋轨迹
先找到最下方的点然后利用Graham-scan每次求得下一个点
ACcode:
#include <iostream>#include <cstdio>#include <cmath>#include <algorithm>using namespace std;int sgn(double x){    if(fabs(x)<1e-8)return 0;    if(x<0)return -1;    return 1;}struct Point{    double x,y;    int id;    Point(){}    Point(double _x,double _y){        x=_x;        y=_y;    }    Point(double _x,double _y,int _id){        x=_x;        y=_y;        id=_id;    }    Point operator-(const Point &b)const{        return Point(x-b.x,y-b.y);    }    double operator*(const Point &b)const{        return x*b.x+y*b.y;    }    double operator^(const Point &b)const{        return x*b.y-y*b.x;    }    double dist(Point p){        return hypot(x-p.x,y-p.y);    }    bool operator <(Point b)const{        return sgn(y-b.y)==0?sgn(x-b.x)<0:y<b.y;    }}my[66];int id=1;bool cmp(Point a,Point b){    if(sgn((a-my[id])^(b-my[id]))==0)return a.dist(my[id])<b.dist(my[id]);    else if(sgn((a-my[id])^(b-my[id]))<0)return 0;    return 1;}void doit(int n){    id=1;    for(int i=2;i<=n;++i,++id)        sort(my+i,my+1+n,cmp);}int main(){    int loop;    scanf("%d",&loop);    while(loop--){        int n;        scanf("%d",&n);        for(int i=1;i<=n;++i){                int id;            double x,y;            scanf("%d%lf%lf",&id,&x,&y);            my[i]=Point(x,y,id);        }        sort(my+1,my+1+n);        doit(n);        printf("%d",n);        for(int i=1;i<=n;++i)            printf(" %d",my[i].id);        putchar('\n');    }    return 0;}


0 0
原创粉丝点击