以贝茜为参照物,则贝茜固定于原点,每个杀手是一个圆心在某条射线上的圆。
解出每个杀手可以射杀贝茜的时间区间,然后扫描线即可,时间复杂度$O(n\log n)$。
#include#include #include using namespace std;typedef long long ll;int n,r,bx,by,bvx,bvy,x,y,vx,vy,i,m,t,ans;double L,R,inf=1e9;struct P{double x;int y;P(){}P(double _x,int _y){x=_x,y=_y;}}a[100010];inline bool cmp(P a,P b){return a.x -1)a[++m]=P(L,1),a[++m]=P(R,-1); } sort(a+1,a+m+1,cmp); for(i=1;i<=m;i++)ans=max(ans,t+=a[i].y); return printf("%d",ans),0;}