# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
4167 | dbfud | 덩치 (KOI13_body) | C++98 | 0 ms | 0 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 <iostream>
#include <string>
using namespace std;
struct body
{
int weight ;
int height ;
int position ;
body() { weight = 0 ; height = 0; position = 1; } ;
};
int main()
{
body BodyData[50] ;
int numChild = 0 ;
cin >> numChild ;
for(int i = 0; i < numChild ; i++)
cin >> BodyData[i].weight >> BodyData[i].height ;
for(int i = 0; i < numChild ; i++ )
for( int j = 0; j < numChild ; j++ )
{
if( (BodyData[i].weight < BodyData[j].weight ) &&
(BodyData[i].height < BodyData[j].height ) )
BodyData[i].position++ ;
}
for(int i = 0; i < numChild ; i++)
cout << BodyData[i].position << " " ;
system("PAUSE");
return 0;
}