# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
5220 | kriii | 초록색 삼각형 (YDX13_green) | C++98 | 36 ms | 1148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 < 0;}
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);
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 long sx = 0, sy = 0;
for (int j=0;j<c;j++){
ans += Q[j].x * sy - Q[j].y * sx;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |