# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
3931 | joonas | Divide into triangle (kriii1_D) | C++98 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <algorithm>
#include <vector>
using namespace std;
vector<pair<int,int>> pt;
int main(){
int i,j, n, tmp;
scanf("%d", &n);
for(i=0; i < 3*n; ++i){
scanf("%d %d", &tmp, &tmp);
pt.push_back(pair<int,int>(i+1,tmp));
}
for(i=0; i < 3*n; ++i){
for(j=0; j < 3*n; ++j){
if( pt[i].second < pt[j].second ) swap( pt[i], pt[j] );
}
}
for(i=0; i < 3*n; i+=3){
for(j=i; j < i+3; ++j){
for(int k=i; k < i+3; ++k){
if( pt[j].first < pt[k].first ) swap( pt[j], pt[k] );
}
}
for(j=i; j < i+3; ++j) printf("%d ", pt[j].first);
printf("\n");
}
return 0;
}