데이터를 pair로 받아 두가지 조건을 비교하는 문제였다
https://www.acmicpc.net/problem/7568
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
pair<int, int> pr[54];
int rank = 1;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> pr[i].first >> pr[i].second;
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if ((pr[i].first < pr[j].first) && (pr[i].second < pr[j].second))
{
rank++;
}
}
cout << rank << " ";
rank = 1;
}
return 0;
}
'개발 노트 > 백준, 프로그래머스 풀이' 카테고리의 다른 글
[백준 1269/c++] 대칭 차집합 (0) | 2022.07.25 |
---|---|
[백준 1120/c++] 문자열 (0) | 2022.07.24 |
[백준 11659/c++] 구간 합 구하기 4 (0) | 2022.07.22 |
[백준 1065/c++] 한수 (0) | 2022.07.21 |
[백준 5635/c++] 생일 (0) | 2022.07.20 |
댓글