# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
5222 | kriii | 초록색 삼각형 (YDX13_green) | C++98 | 216 ms | 1148 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#include <algorithm>
using namespace std;
struct point{long long x,y;} P[2020],Q[2020];
bool cmp1(const point& a, const point& b){return a.y == b.x ? a.x < b.x : a.y < b.y;}
bool cmp2(const point& a, const point& b){return a.x * b.y < a.y * b.x;}
int main()
{
int N;
scanf ("%d",&N);
for (int i=0;i<N;i++){
scanf ("%lld %lld",&P[i].x,&P[i].y);
}
sort(P,P+N,cmp1);
long double ans = 0;
for (int i=0;i<N;i++){
int c = 0;
for (int j=i+1;j<N;j++){
Q[c].x = P[j].x - P[i].x;
Q[c].y = P[j].y - P[i].y;
c++;
}
sort(Q,Q+c,cmp2);
long double sx = 0, sy = 0;
for (int j=0;j<c;j++){
ans += Q[j].x * sy - Q[j].y * sx;
sx += Q[j].x;
sy += Q[j].y;
}
}
if (N >= 3){
ans /= N;
ans /= N-1;
ans /= N-2;
ans *= 3;
}
printf ("%.12Lf\n",ans);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |