250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- English
- 코딩테스트
- MySQL
- 완전탐색
- 삼성
- 코테 대비
- PyQt
- BFS
- SQL
- dfs
- sw expert academy
- 알고리즘 문제
- 알고리즘
- 원서
- the midnight library
- STUDYENGLISH
- 프로그래머스
- 직무면접
- readingbook
- 원서읽기
- 코테
- englishbook
- 코테 준비
- 백준
- swexpertacademy
- nightroutine
- 원서읽자
- 쉬운 알고리즘 문제
- D4
- sw expert
Archives
- Today
- Total
시나브로
[백준] 7568번 덩치 본문
728x90
전체탐색으로 풀면 된다.
#include<stdio.h>
#include<vector>
#include<iostream>
#include <algorithm>
using namespace std;
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
int n = 0;
scanf("%d", &n);
int list[55][2] = { 0 };
for (int i = 0; i < n; i++) {
scanf("%d %d", &list[i][0], &list[i][1]);
}
for (int i = 0; i < n; i++) {
int count = 1;
for (int j = 0; j < n; j++) {
if (i == j)
continue;
if (list[i][0] < list[j][0] && list[i][1] < list[j][1])
count++;
}
printf("%d ", count);
}
return 0;
}
https://www.acmicpc.net/problem/7568
728x90
'알고리즘 > 백준' 카테고리의 다른 글
8393 합 (0) | 2020.01.09 |
---|---|
[백준] 체스판 다시 칠하기 (0) | 2019.12.31 |
[백준] 2231번 분해합 (0) | 2019.12.31 |
[백준] 2798 번 블랙잭 (0) | 2019.12.31 |
[ 백준 ] 14500번 테트로미노 _ 완전 탐색 (0) | 2019.12.30 |
Comments