QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#359448#6517. Computational GeometryDoqeWA 0ms3672kbC++14699b2024-03-20 17:56:202024-03-20 17:56:20

Judging History

你现在查看的是最新测评结果

  • [2024-03-20 17:56:20]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3672kb
  • [2024-03-20 17:56:20]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int N=1e4+10;
long long W[N][N];
int x[N],y[N];
long long abs(int i,int j)
{
	return 1ll*(x[i]-x[j])*(x[i]-x[j])+1ll*(y[i]-y[j])*(y[i]-y[j]);
}
int main()
{
	int T;cin>>T;
	int U=(T<=10),C=0;
	while(T--)
	{
		int n;cin>>n;
		for(int i=1;i<=n;++i)cin>>x[i]>>y[i],x[n+i]=x[i],y[n+i]=y[i];
		if(++C==120)
		{
			for(int i=1;i<=n;++i)cout<<x[i]<<" "<<y[i]<<endl;
		}
		long long ans=8e18;
		for(int d=2;d<=n+1;++d)
			for(int i=1,j=d;j<=n*2;++i,++j)
				W[i][j]=max({W[i][j-1],W[i+1][j],abs(i,j)});
		for(int i=1;i<=n;++i)
			for(int j=3;j<=n-1;++j)
				ans=min(ans,W[i][i+j-1]+W[i+j-1][i+n]);
		if(T)cout<<ans<<endl;
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3672kb

input:

2
4
1 0
2 0
1 1
0 0
6
10 4
9 7
5 7
4 5
6 4
9 3

output:

4

result:

wrong answer Answer contains longer sequence [length = 2], but output contains 1 elements