QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#143255#6517. Computational GeometryMaxBlazeResFireWA 2ms5840kbC++232.4kb2023-08-20 23:58:502023-08-20 23:58:52

Judging History

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

  • [2023-08-20 23:58:52]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:5840kb
  • [2023-08-20 23:58:50]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;

#define double long double
#define MAXN 5005
#define eps 1e-6
#define INF 3e18

struct vec2{
	double x,y;
	vec2(){}
	vec2( double a , double b ): x(a),y(b){}
	inline vec2 operator +( vec2 B ){ return vec2( x + B.x , y + B.y ); }
	inline vec2 operator -( vec2 B ){ return vec2( x - B.x , y - B.y ); }
}p[MAXN];

inline double Cross( vec2 A , vec2 B ){ return A.x * B.y - A.y * B.x; }

inline double dist( vec2 A , vec2 B ){ return ( A.x - B.x ) * ( A.x - B.x ) + ( A.y - B.y ) * ( A.y - B.y ); }

inline bool online( vec2 A , vec2 B , vec2 C ){ return fabs( Cross( A - C , B - C ) ) < eps; }

int n;
double f[MAXN][MAXN],g[MAXN][MAXN];

inline void solve(){
	scanf("%d",&n);
	for( int i = 1 ; i <= n ; i ++ ) scanf("%Lf%Lf",&p[i].x,&p[i].y);
	for( int i = 1 ; i < n ; i ++ ) f[i][i + 1] = dist( p[i] , p[i + 1] );
	for( int len = 3 ; len <= n ; len ++ ){
		for( int l = 1 ; l + len - 1 <= n ; l ++ ){
			int r = l + len - 1;
			if( online( p[l] , p[l + 1] , p[r] ) || ( ( l > 1 ) && online( p[l] , p[l - 1] , p[r] ) ) ) f[l][r] = INF;
			else f[l][r] = max( max( f[l + 1][r] , f[l][r - 1] ) , dist( p[l] , p[r] ) );
		}
	}
	// for( int l = 1 ; l < n ; l ++ ){
		// for( int r = l + 1 ; r <= n ; r ++ ){
			// cerr << l << " " << r << " " << f[l][r] << "\n";
		// }
	// }
	// cerr << "\n";
	g[1][n] = dist( p[1] , p[n] );
	for( int len = 3 ; len <= n ; len ++ ){
		for( int l = 1 ; l < len ; l ++ ){
			int r = n - ( len - l ) + 1;
			if( ( l == 1 ) && online( p[1] , p[n] , p[r] ) ) g[l][r] = INF;
			else if( ( r == n ) && online( p[1] , p[n] , p[l] ) ) g[l][r] = INF;
			else if( l == 1 ) g[l][r] = max( max( g[l][r + 1] , f[r][n] ) , dist( p[l] , p[r] ) );
			else if( r == n ) g[l][r] = max( max( g[l - 1][r] , f[1][l] ) , dist( p[l] , p[r] ) );
			else g[l][r] = max( max( g[l - 1][r] , g[l][r + 1] ) , dist( p[l] , p[r] ) );
			
		}
	}
	// for( int l = 1 ; l < n ; l ++ ){
		// for( int r = l + 1 ; r <= n ; r ++ ){
			// cerr << l << " " << r << " " << g[l][r] << "\n";
		// }
	// }
	// cerr << "\n";
	double Ans = INF;
	for( int l = 1 ; l <= n - 2 ; l ++ )
		for( int r = l + 2 ; r <= ( ( l == 1 ) ? n - 1 : n ) ; r ++ )
			Ans = min( Ans , f[l][r] + g[l][r] );
	printf("%lld\n",(long long)Ans);
	cerr << "\n";
}

signed main(){
	int testcase; scanf("%d",&testcase);
	while( testcase -- ) solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5724kb

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
44

result:

ok 2 number(s): "4 44"

Test #2:

score: -100
Wrong Answer
time: 2ms
memory: 5840kb

input:

713
8
8 25
3 15
0 5
10 0
19 2
24 6
23 15
15 34
8
25 16
18 25
10 32
1 23
0 14
21 0
27 2
32 6
7
16 15
8 20
1 16
0 12
16 0
21 1
24 5
7
15 1
18 0
24 8
27 15
4 19
0 17
7 8
4
10 20
0 30
15 0
14 10
6
15 0
24 10
21 14
12 14
7 11
0 3
7
18 7
16 9
12 10
6 9
0 4
5 0
15 1
9
0 23
8 13
14 6
24 0
34 1
41 11
37 20
1...

output:

1075
1389
706
687
1550
497
300
1668
471
162
519
190
786
983
367
930
580
524
509
275
617
298
146
1330
494
965
599
1321
866
1278
242
398
560
1836
871
1146
366
500
371
1118
1222
1994
712
586
858
624
697
575
1274
1583
1315
406
938
670
990
1231
513
2871
939
2861
1610
834
721
585
203
198
1666
617
1166
326...

result:

wrong answer 30th numbers differ - expected: '1210', found: '1278'