알고리즘

백준 : : 7568번 덩치- C++ 풀이

green333 2022. 5. 1. 08:44
728x90
SMALL

https://www.acmicpc.net/problem/7568

 

7568번: 덩치

우리는 사람의 덩치를 키와 몸무게, 이 두 개의 값으로 표현하여 그 등수를 매겨보려고 한다. 어떤 사람의 몸무게가 x kg이고 키가 y cm라면 이 사람의 덩치는 (x, y)로 표시된다. 두 사람 A 와 B의 덩

www.acmicpc.net

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <iostream>
#include <vector>
 
using namespace std;
 
int main(void){
    int n, x, y;
    int count;
 
    cin >> n;
    vector<pair<intint> > v;
 
    for(int i = 0; i < n; i++){
        cin >> x >> y;
        v.push_back(pair<intint>(x, y));
    }
 
    for(int j = 0; j < n; j++){
        count = 1;
        for(int k = 0; k < n; k++){
            if(v[j].first < v[k].first && v[j].second < v[k].second){
                count++;
            }
        }
        cout << count << endl;
    }
}
 
 
cs

 

 

LIST