# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
4167 | 2013-09-02T22:29:36 Z | dbfud | 덩치 (KOI13_body) | C++ | 0 ms | 0 KB |
#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; }