QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#810990#9869. Horizon ScanningBrno (Bocheng Jiang, Zhenyu Wang, Taixiang Wang)#WA 33ms10208kbC++202.3kb2024-12-12 14:19:382024-12-12 14:19:38

Judging History

This is the latest submission verdict.

  • [2024-12-12 14:19:38]
  • Judged
  • Verdict: WA
  • Time: 33ms
  • Memory: 10208kb
  • [2024-12-12 14:19:38]
  • Submitted

answer

#include<bits/stdc++.h>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
typedef long long ll;
typedef long double ld;
using namespace std;
const int N=200010,M=2000010,INF=0x3f3f3f3f;
const ld eps=1e-11,pi=acos(-1);
int T,n,k;
struct node{
	ll x,y;
	node(ll xx=0,ll yy=0){x=xx,y=yy;}
	void in(){cin>>x>>y;}
	void out(){cout<<'('<<x<<','<<y<<')'<<'\n';}
	bool operator <(const node &a)const{
		return x!=a.x?x<a.x:y<a.y;
	}
	bool operator ==(const node &a)const{
		return x==a.x&&y==a.y;
	}
};

node operator +(const node &a,const node &b){return node(a.x+b.x,a.y+b.y);}
node operator -(const node &a,const node &b){return node(a.x-b.x,a.y-b.y);}
ll operator *(const node &a,const node &b){return a.x*b.x+a.y*b.y;}
ll operator ^(const node &a,const node &b){return a.x*b.y-a.y*b.x;}

ld len(node a){return sqrt((ld)(a*a));}

node O(0,0),P(-1,0);
bool cmp2(node a,node b){
	//Polar sorting
	if(((a-O)^(b-O))==0){
		if(a*b>0)return a*a<b*b;
		else if((a^P)==0)return a.x<b.x;
		else return (a^P)<(b^P);
	}
    if(((P-O)^(a-O))==0&&(P.x-O.x)*(a.x-O.x)>0)return 1;
    if(((P-O)^(b-O))==0&&(P.x-O.x)*(b.x-O.x)>0)return 0;
    if((((P-O)^(a-O))>0)!=(((P-O)^(b-O))>0))return ((P-O)^(a-O))>((P-O)^(b-O));
    return ((a-O)^(b-O))>0;
}

node p[N<<1];

ld ans;

void solve(){
	ans=0;
	cin>>n>>k;
	for(int i=1;i<=n;i++)
		p[i].in();
	if(n==k){
		cout<<fixed<<setprecision(15)<<2.0*pi<<'\n';
		return;
	}
	sort(p+1,p+n+1,cmp2);
	for(int i=1;i<=n;i++)p[i+n]=p[i];
	for(int i=1,j=1;i<=n;i++){
		while(j-i+1<=k)j++;
		ld cs=(p[i]*p[j])/(len(p[i])*len(p[j]));
		ld theta=acos(cs);
		if(fabs(cs-1)<eps)theta=0;
		if((p[i]^p[j])<0)theta=2.0*pi-theta;
		if(!(p[i]^p[j])&&(p[i]*p[j])<0){
			theta=pi;
		}
		if(!(p[i]^p[j])&&(p[i]*p[j])>0){
			if(k==1)theta=0;
			else theta=2.0*pi;
		}
		ans=max(ans,theta);
	}
	cout<<fixed<<setprecision(15)<<ans<<'\n';
}
int main(){
	ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
	cin>>T;
	while(T--)solve();
	return 0;
}
/*
 5
 1 1
 0 1
 8 2
 1 0
 1 1
 0 1
 -1 1
 -1 0
 -1 -1
 0 -1
 1 -1
 4 2
 -1 1
 0 1
 0 2
 1 1
 4 2
 -1000000000 0
 -998244353 1
 998244353 1
 1000000000 0
 3 1
 0 1
 0 2
 0 -1
 
 1
 4 2
 -1000000000 0
 -998244353 1
 998244353 1
 1000000000 0
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 10044kb

input:

5
1 1
0 1
8 2
1 0
1 1
0 1
-1 1
-1 0
-1 -1
0 -1
1 -1
4 2
-1 1
0 1
0 2
1 1
4 2
-1000000000 0
-998244353 1
998244353 1
1000000000 0
3 1
0 1
0 2
0 -1

output:

6.283185307179586
1.570796326794897
5.497787143782138
3.141592654577610
3.141592653589793

result:

ok 5 numbers

Test #2:

score: -100
Wrong Answer
time: 33ms
memory: 10208kb

input:

10000
16 1
-10 -6
-5 -6
-4 9
-2 5
-2 10
1 -7
1 -5
1 6
3 1
4 -9
6 -10
6 -3
6 1
8 -5
8 -4
9 -4
17 4
-9 2
-8 -4
-8 -3
-8 -1
-6 -2
-6 -1
-6 8
-5 -8
-5 10
-4 8
-2 -8
4 -9
4 0
5 -3
8 -5
9 -2
10 10
10 6
-7 2
-4 6
-2 -7
-2 -1
-1 7
1 -9
1 8
3 -4
7 -4
9 -2
14 3
-9 10
-8 -10
-8 -8
-6 -7
-6 -5
-1 -7
-1 -2
0 -1
...

output:

1.692991497486252
2.574863436066287
4.652758267253520
2.772633107383937
5.742765806909002
4.857698991020392
3.419892312594904
2.812799962084839
6.283185307179586
6.283185307179586
5.117280766669773
6.146782702778639
3.842089023537519
2.342496716819479
3.463343207986435
6.283185307179586
5.9614347527...

result:

wrong answer 87th numbers differ - expected: '1.8847345', found: '6.2831853', error = '2.3337243'