标签:des http io os ar for strong sp div
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 2192 | Accepted: 502 |
Description
Input
Output
Sample Input
2 1 3 1 0 2
Sample Output
2.000 2.000
Source
题目一看就非常熟悉非常熟悉非常熟悉啊!
我怎么一眼看到就想起詹森不等式呢。。。。
其实是重心公式。C是重心的x,而y在凸包上。
所以问题就变成求凸包啦!
求完凸包就要绕着凸包上每一条边求极值并更新。
/*********************************************************** > OS : Linux 3.13.0-24-generic (Mint-17) > Author : yaolong > Mail : dengyaolong@yeah.net > Time : 2014年10月14日 星期二 07时44分53秒 **********************************************************/ #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <algorithm> #include <cmath> using namespace std; const double INF = 1e50; const int N = 61111; struct Point { int x, y; } ; Point p[N], stk[N]; Point minp; int top; double cross ( Point &o, Point &a, Point &b ) { return ( a.x - o.x ) * ( b.y - o.y ) - ( a.y - o.y ) * ( b.x - o.x ); } double dist ( Point &A, Point & B ) { return hypot ( A.x - B.x, A.y - B.y ); } bool cmp ( Point A, Point B ) { double k = cross ( minp, A, B ); if ( k < 0 ) return 0; if ( k > 0 ) return 1; return dist ( minp, A ) < dist ( minp, B ); } void Gramham ( int n ) { int i; for ( i = 1; i < n; i++ ) { if ( p[i].y < p[0].y || ( p[i].y == p[0].y && p[i].x < p[0].x ) ) { swap ( p[i], p[0] ); } } minp = p[0]; p[n] = p[0]; sort ( p + 1, p + n, cmp ); stk[0] = p[0]; stk[1] = p[1]; top = 1; for ( i = 2; i < n; i++ ) { while ( top >= 1 && cross ( stk[top - 1], stk[top ], p[i] ) <= 0 ) --top; stk[++top] = p[i]; } } double mmin, mmax; int c; void update ( Point a, Point b ) { if ( a.x > b.x ) { swap ( a, b ); } if ( a.x <= c && b.x >= c ) { if ( a.x == c && b.x == c ) { mmax = max ( mmax, ( double ) max ( a.y, b.y ) ); mmin = min ( mmin, ( double ) min ( a.y, b.y ) ); } else { double k = ( ( double ) c - a.x ) / ( ( double ) b.x - a.x ) * ( b.y - a.y ) + a.y; mmax = max ( mmax, k ); mmin = min ( mmin, k ); } } } int main() { int n, i; while ( ~scanf ( "%d%d", &n, &c ) ) { for ( i = 0; i < n; i++ ) { scanf ( "%d", &p[i].x ); } for ( i = 0; i < n; i++ ) { scanf ( "%d", &p[i].y ); } if ( n == 1 ) { printf ( "%.3f %.3f\n", ( double ) p[0].y, ( double ) p[0].y ); continue; } Gramham ( n ); stk[++top] = stk[0]; mmin = INF, mmax = -INF; for ( i = 1; i <= top; i++ ) { update ( stk[i - 1], stk[i] ); } printf ( "%.3f %.3f\n", mmin, mmax ); } return 0; }
标签:des http io os ar for strong sp div
原文地址:http://blog.csdn.net/dengyaolongacmblog/article/details/40075029