본문 바로가기
C++/백준

[C++백준] 실버 5/ 7568번 덩치

by Meaning_ 2022. 2. 1.
728x90
반응형

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <iostream>
#include<algorithm>
 
using namespace std;
 
 
int main() {
    ios_base::sync_with_stdio(false); 
    cout.tie(NULL); 
    cin.tie(NULL);
    cout.tie(nullptr);
    cin.tie(nullptr);
    
 
    int n;
    cin >> n;
    int** arr = new int*[n];
    
    int* rank = new int[n];
    for (int i = 0; i < n; i++) {
        arr[i] = new int[2];
        rank[i] = 1;
 
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 2; j++) {
            cin >> arr[i][j];
        }
    }
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            if ((arr[i][0< arr[j][0])&&(arr[i][1<arr[j][1])){
                rank[i]++;
            }
        }
    }
    for (int i = 0; i < n; i++) {
        cout << rank[i] << " ";
    }
 
    return 0;
}
 
cs
 
if ((arr[i][0< arr[j][0])&&(arr[i][1<arr[j][1])){
                rank[i]++;
 }

--> 브루트포스를 이용해서 만약에 i번째 인덱스가 j번째 인덱스보다 작다면 rank[i]를 1씩 증가시켜주어 석차를 올리는 방법을 쓰면된다.

 

비슷한 문제로 석차 구하기 문제가 있다. 

728x90
반응형

댓글