首页 > 代码库 > POJ 2653 Pick-up sticks [线段相交 迷之暴力]
POJ 2653 Pick-up sticks [线段相交 迷之暴力]
Pick-up sticks
Time Limit: 3000MS | Memory Limit: 65536K | |
Total Submissions: 12861 | Accepted: 4847 |
Description
Stan has n sticks of various length. He throws them one at a time on the floor in a random way. After finishing throwing, Stan tries to find the top sticks, that is these sticks such that there is no stick on top of them. Stan has noticed that the last thrown stick is always on top but he wants to know all the sticks that are on top. Stan sticks are very, very thin such that their thickness can be neglected.
Input
Input consists of a number of cases. The data for each case start with 1 <= n <= 100000, the number of sticks for this case. The following n lines contain four numbers each, these numbers are the planar coordinates of the endpoints of one stick. The sticks are listed in the order in which Stan has thrown them. You may assume that there are no more than 1000 top sticks. The input is ended by the case with n=0. This case should not be processed.
Output
For each input case, print one line of output listing the top sticks in the format given in the sample. The top sticks should be listed in order in which they were thrown.
The picture to the right below illustrates the first case from input.
The picture to the right below illustrates the first case from input.
Sample Input
51 1 4 22 3 3 11 -2.0 8 41 4 8 23 3 6 -2.030 0 1 11 0 2 12 0 3 10
Sample Output
Top sticks: 2, 4, 5.Top sticks: 1, 2, 3.
Hint
Huge input,scanf is recommended.
Source
Waterloo local 2005.09.17
还是判断线段相交
注意两条线段共线的情况,用点积判断
太诡异从后往前暴力判断能过,用一个栈维护当前没有覆盖的线段也能过
但是最坏复杂度都是N^2啊???
#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <cmath>#include <vector>using namespace std;typedef long long ll;const int N=1e5+5;const double eps=1e-8;inline int read(){ char c=getchar();int x=0,f=1; while(c<‘0‘||c>‘9‘){if(c==‘-‘)f=-1; c=getchar();} while(c>=‘0‘&&c<=‘9‘){x=x*10+c-‘0‘; c=getchar();} return x*f;}inline int sgn(double x){ if(abs(x)<eps) return 0; else return x<0?-1:1;}struct Vector{ double x,y; Vector(double a=0,double b=0):x(a),y(b){} bool operator <(const Vector &a)const{ return x<a.x||(x==a.x&&y<a.y); } void print(){ printf("%lf %lf\n",x,y); }};typedef Vector Point;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 b){return Vector(a.x*b,a.y*b);}Vector operator /(Vector a,double b){return Vector(a.x/b,a.y/b);}bool operator ==(Vector a,Vector b){return sgn(a.x-b.x)==0&&sgn(a.y-b.y)==0;}double Cross(Vector a,Vector b){ return a.x*b.y-a.y*b.x;}double Dot(Vector a,Vector b){ return a.x*b.x+a.y*b.y;}double DisPP(Point a,Point b){ Point t=a-b; return sqrt(t.x*t.x+t.y*t.y);}struct Line{ Point s,t; Line(){} Line(Point p,Point v):s(p),t(v){}}l[N];bool isLSI(Line l1,Line l2){ Vector v=l1.t-l1.s,u=l2.s-l1.s,w=l2.t-l1.s; return sgn(Cross(v,u))!=sgn(Cross(v,w));}bool isSSI(Line l1,Line l2){ Vector v1=l1.t-l1.s,v2=l2.t-l2.s; if(sgn(Cross(v1,v2))==0){ int flag=0; Vector u=l2.s-l1.s,w=l2.t-l1.s; if(sgn(Dot(u,w))<0) flag=1; u=l2.s-l1.t,w=l2.t-l1.t; if(sgn(Dot(u,w))<0) flag=1; return flag; } else return isLSI(l1,l2)&&isLSI(l2,l1);}int n;bool vis[N];double x,y,x2,y2;int main(int argc, const char * argv[]) { while(true){ memset(vis,0,sizeof(vis)); n=read(); if(n==0) break; for(int i=1;i<=n;i++){ scanf("%lf%lf%lf%lf",&x,&y,&x2,&y2); l[i]=Line(Point(x,y),Point(x2,y2)); } for(int i=1;i<=n;i++){ for(int j=i+1;j<=n;j++) if(isSSI(l[j],l[i])){vis[i]=1;break;} } printf("Top sticks: "); int fir=1; for(int i=1;i<=n;i++) if(!vis[i]){ if(fir) printf("%d",i),fir=0; else printf(", %d",i); } puts("."); } return 0;}
#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>#include <cmath>#include <vector>using namespace std;typedef long long ll;const int N=1e5+5;const double eps=1e-8;inline int read(){ char c=getchar();int x=0,f=1; while(c<‘0‘||c>‘9‘){if(c==‘-‘)f=-1; c=getchar();} while(c>=‘0‘&&c<=‘9‘){x=x*10+c-‘0‘; c=getchar();} return x*f;}inline int sgn(double x){ if(abs(x)<eps) return 0; else return x<0?-1:1;}struct Vector{ double x,y; Vector(double a=0,double b=0):x(a),y(b){} bool operator <(const Vector &a)const{ return x<a.x||(x==a.x&&y<a.y); } void print(){ printf("%lf %lf\n",x,y); }};typedef Vector Point;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 b){return Vector(a.x*b,a.y*b);}Vector operator /(Vector a,double b){return Vector(a.x/b,a.y/b);}bool operator ==(Vector a,Vector b){return sgn(a.x-b.x)==0&&sgn(a.y-b.y)==0;}double Cross(Vector a,Vector b){ return a.x*b.y-a.y*b.x;}double Dot(Vector a,Vector b){ return a.x*b.x+a.y*b.y;}double DisPP(Point a,Point b){ Point t=a-b; return sqrt(t.x*t.x+t.y*t.y);}struct Line{ Point s,t; Line(){} Line(Point p,Point v):s(p),t(v){}}l[N];bool isLSI(Line l1,Line l2){ Vector v=l1.t-l1.s,u=l2.s-l1.s,w=l2.t-l1.s; return sgn(Cross(v,u))!=sgn(Cross(v,w));}bool isSSI(Line l1,Line l2){ Vector v1=l1.t-l1.s,v2=l2.t-l2.s; if(sgn(Cross(v1,v2))==0){ int flag=0; Vector u=l2.s-l1.s,w=l2.t-l1.s; if(sgn(Dot(u,w))<0) flag=1; u=l2.s-l1.t,w=l2.t-l1.t; if(sgn(Dot(u,w))<0) flag=1; return flag; } else return isLSI(l1,l2)&&isLSI(l2,l1);}int n,st[N],top;inline void del(int p){ for(int i=p;i<=top;i++) st[i]=st[i+1];top--;}double x,y,x2,y2;int main(int argc, const char * argv[]) { while(true){ top=0; n=read(); if(n==0) break; for(int i=1;i<=n;i++){ scanf("%lf%lf%lf%lf",&x,&y,&x2,&y2); l[i]=Line(Point(x,y),Point(x2,y2)); for(int j=1;j<=top;j++) if(isSSI(l[st[j]],l[i])) del(j),j--; st[++top]=i; } printf("Top sticks: %d",st[1]); for(int i=2;i<=top;i++) printf(", %d",st[i]); puts("."); } return 0;}
POJ 2653 Pick-up sticks [线段相交 迷之暴力]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。