https://www.acmicpc.net/problem/7568 7568번: 덩치 우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x, y)로 표시된다. 두 사람 A 와 B의 덩 www.acmicpc.net 코드 #include #include using namespace std; int main() { vector people; vector rank; int w, h, n; cin >> n; //init for(int i=0; i> w >> h; people.push_back(pair(w, h)); rank.push_back(1); } int l = people.size(); for(i..