# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
5716 | baneling100 | Divide into triangle (kriii1_D) | C++98 | 0 ms | 1332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
#include <math.h>
#define inf 0x7fffffff
#define pi 3.141592653589793238
using namespace std;
typedef pair <int,int> ppair;
typedef pair <ppair,int> pppair;
pair <double,pppair> p[901];
int N;
void input(void)
{
int i, x, y, minx=inf, miny=inf;
scanf("%d",&N);
for(i=1 ; i<=3*N ; i++)
{
scanf("%d %d",&x,&y);
p[i]=make_pair(0,make_pair(make_pair(x,y),i));
if(miny>y)
{
miny=y;
minx=x;
}
else if(miny==y)
if(minx>x)
minx=x;
}
for(i=1 ; i<=3*N ; i++)
p[i].first=atan2(p[i].second.first.second-miny,p[i].second.first.first-minx);
sort(p+1,p+3*N+1);
}
void output(void)
{
int i;
for(i=0 ; i<N ; i++)
printf("%d %d %d\n",p[3*i+1].second.second,p[3*i+2].second.second,p[3*i+3].second.second);
}
int main(void)
{
input();
output();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |