| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 3625 | pl0892029 | Divide into triangle (kriii1_D) | C++98 | 0 ms | 1092 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <algorithm>
using namespace std;
typedef struct point {
int x,y,idx;
}point;
bool cmp(point A,point B) {
return A.y == B.y ? A.x < B.x : A.y < B.y;
}
int main() {
int n;
scanf("%d",&n);
point arr[1000];
for(int i=0;i<3*n;i++) {
scanf("%d %d",&arr[i].x,&arr[i].y);
arr[i].idx = i+1;
}
sort(arr,arr+3*n,cmp);
for(int i=0;i<n;i++) {
for(int j=0;j<3;j++)
printf("%d ",arr[3*i+j].idx);
puts("");
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
