比赛 20140418 评测结果 AWWWWWWWWW
题目名称 奶牛冰壶运动 最终得分 10
用户昵称 cstdio 运行时间 0.199 s
代码语言 C++ 内存使用 1.14 MiB
提交时间 2014-04-18 11:12:26
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#include<cmath>
#include<list>
#include<deque>
using namespace std;
const int SIZEN=50010;
int N;
class POINT{
public:
	int x,y;
	void print(void){
		cout<<"("<<x<<","<<y<<")";
	}
};
POINT operator - (POINT a,POINT b){
	return (POINT){a.x-b.x,a.y-b.y};
}
bool operator < (POINT a,POINT b){//靠下为小,然后靠左为小
	if(a.y==b.y) return a.x<b.x;
	return a.y<b.y;
}
int crp(POINT a,POINT b){
	//x1y2-x2y1
	//如果为正表明b在a的逆时针
	return a.x*b.y-a.y*b.x;
}
void swap(POINT &a,POINT &b){
	POINT c;
	c=a;a=b;b=c;
}
POINT base;
/*bool cmp(POINT a,POINT b){//以base为视点,b是否在a的逆时针
	//base.print();a.print();b.print();cout<<(crp(a-base,b-base)>0)<<endl;
	return crp(a-base,b-base)>0;
}*/
bool anticlock(POINT x,POINT a,POINT b){//以x为视点,b是否在a的逆时针
	return crp(a-x,b-x)>0;
}
bool clockwise(POINT x,POINT a,POINT b){
	return crp(a-x,b-x)<0;
}
int cross(POINT a,POINT b,POINT c){
	return crp(b-a,c-a);
}
int sgn(int x){
	if(x==0) return 0;
	if(x<0) return -1;
	if(x>0) return 1;
}
bool comp(POINT a,POINT b){
	return a.x<b.x||sgn(a.x-b.x)==0&&a.y<b.y;
}
deque<POINT> H;
int s[SIZEN]={0};
void quickhull(POINT p[SIZEN],int l,int r,POINT a,POINT b){
	int x=l,i=l-1,j=r+1,k;
	for(k=l;k<=r;k++){
		int temp=sgn(s[x]-s[k]);
		if(temp<0||temp==0&&comp(p[x],p[k])) x=k;
	}
	POINT y=p[x];
	for(k=l;k<=r;k++){
		s[++i]=cross(p[k],a,y);
		if(sgn(s[i])>0) swap(p[i],p[k]);
		else i--;
	}
	for(k=r;k>=l;k--){
		s[--j]=cross(p[k],y,b);
		if(sgn(s[j])>0) swap(p[j],p[k]);
		else j++;
	}
	if(l<=i) quickhull(p,l,i,a,y);
	H.push_back(y);
	if(j<=r) quickhull(p,j,r,y,b);
}
deque<POINT> hull;
void inverse(void){
	int x=1,y=hull.size()-1;
	while(x<y){
		swap(hull[x],hull[y]);
		x++,y--;
	}
}
void gethull(POINT p[SIZEN]){
	H.clear();
	hull.clear();
	memset(s,0,sizeof(s));
	int x=0;
	for(int i=1;i<=N;i++){
		if(x==0||comp(p[i],p[x])) x=i;
	}
	swap(p[1],p[x]);
	H.push_back(p[1]);
	quickhull(p,2,N,p[1],p[1]);
	x=0;
	for(int i=1;i<H.size();i++){
		if(H[i]<H[x]) x=i;
	}
	//for(int i=0;i<H.size();i++) H[i].print();cout<<endl;cout<<x<<endl;
	for(int i=x;i<H.size();i++) hull.push_back(H[i]);
	for(int i=0;i<x;i++) hull.push_back(H[i]);
	if(!anticlock(hull[0],hull[1],hull[2])) inverse();
}
/*void Graham(deque<POINT> &hull,POINT p[SIZEN]){
	hull.clear();
	int minpoint=1;
	for(int i=2;i<=N;i++) if(p[i]<p[minpoint]) minpoint=i;
	swap(p[1],p[minpoint]);
	base=p[1];
	sort(p+2,p+1+N,cmp);
	hull.push_back(p[1]),hull.push_back(p[2]);
	for(int i=3;i<=N;i++){
		//for(int i=0;i<hull.size();i++) hull[i].print();cout<<endl;
		int tot=hull.size()-1;
		//测试在该点处是否向左转,即以倒数第一个点为视点,倒数第二个点在这个点的严格逆时针方向
		//以倒数第二个点为视点,这个点在倒数第一个点的严格逆时针方向
		//while(hull.size()>=2&&!anticlock(hull[tot-1],hull[tot],p[i])){//在这里没向左转
		//while(hull.size()>=2&&!anticlock(hull[tot],p[i],hull[tot-1])){
		while(hull.size()>=2&&clockwise(hull[tot],p[i],hull[tot-1])){
			//hull[tot-1].print();hull[tot].print();p[i].print();cout<<endl;
			hull.pop_back();
			tot--;
		}
		hull.push_back(p[i]);
	}
	//hull.push_back(p[1]);
	//for(int i=1;i<=N;i++) p[i].print();cout<<endl;
	//for(int i=0;i<hull.size();i++) hull[i].print();cout<<endl;
}*/
int find(POINT x,int left,int right){
	//x.print();cout<<" "<<left<<" "<<right<<endl;
	if(left==right) return left;
	int mid=(left+right)/2;
	//cout<<left<<" "<<right<<" "<<mid<<endl;
	//hull[0].print();x.print();hull[mid].print();cout<<(anticlock(hull[0],x,hull[mid]))<<endl;
	//if(antiblock(hull[0],))
	if(anticlock(hull[0],x,hull[mid+1])) return find(x,left,mid);
	else return find(x,mid+1,right);
}
int inside(POINT x){
	if(anticlock(hull[0],x,hull[1])) return 0;
	if(anticlock(hull[0],hull.back(),x)) return 0;
	if(crp(hull.back()-hull[0],x-hull[0])==0) return 1;
	int k=find(x,0,hull.size()-1);
	//x.print();cout<<k<<" "<<anticlock(hull[k],x,hull[k+1])<<endl;
	if(anticlock(hull[k],x,hull[k+1])) return 0;
	//x.print();
	return 1;
}
int enclose(POINT pa[SIZEN],POINT pb[SIZEN]){
	//Graham(hull,pa);
	gethull(pa);
	//for(int i=0;i<hull.size();i++) hull[i].print();cout<<endl;
	if(hull.size()<3) return 0;
	int ans=0;
	for(int i=1;i<=N;i++) ans+=inside(pb[i]);
	return ans;
}
POINT P1[SIZEN],P2[SIZEN];
void read(void){
	scanf("%d",&N);
	for(int i=1;i<=N;i++) scanf("%d%d",&P1[i].x,&P1[i].y);
	for(int i=1;i<=N;i++) scanf("%d%d",&P2[i].x,&P2[i].y);
}
int main(){
	freopen("curling.in","r",stdin);
	freopen("curling.out","w",stdout);
	//cout<<(0&&0||1)<<endl;
	read();
	//cout<<enclose(P1,P2)<<endl;
	//cout<<enclose(P2,P1)<<endl;
	//printf("%d %d\n",enclose(P1,P2),enclose(P2,P1));
	printf("%d ",enclose(P1,P2));
	printf("%d\n",enclose(P2,P1));
	return 0;
}