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 | 31 |
Tags
- centos pyhon 설치
- subporcess path
- selinux port 등록
- 1697
- c3 step graph
- c3 second
- c3 초
- 정규식 활용
- telegraf
- 정규식 문자열 출력
- gcc regex
- 정규식 컴파일
- semanage
- gcc 업데이트
- python os
- linux시간으로 변경
- 백준
- c++ 정규식
- c3 축 없애기
- InfluxDB
- CentOS7
- python popen
- c3 축 가리기
- influxdb 설치
- snmp test
- snmp
- regex_search
- grafana dashboard
- python subprocess
- g++ 업데이트
Archives
- Today
- Total
리셋 되지 말자
[백준 7568] 덩치 - 브루트포스 본문
코드
def solution(arr):
# 덩치 등수를 저장할 배열 선언
answer = [0 for _ in range(len(arr))]
# 타겟이 되는 사람 arr[i]
for i in range(len(arr)):
# 랭크가 0이 아닌 1부터 시작함으로 1로 초기화된 rank_cnt 선언
rank_cnt = 1
# 타겟이 되는 사람인 arr[i]와 비교할 arr[j] 순회. 자기 자신이면 패스
# 만약 타겟 arr[i]보다 덩치가 더 큰 사람이 있으면 rank_cnt + 1
for j in range(len(arr)):
if j==i:
continue
if arr[i][0] < arr[j][0] and arr[i][1] < arr[j][1]:
rank_cnt += 1
# 타겟인 arr[i]의 랭크를 저장
answer[i] = rank_cnt
# 랭크를 저장한 answer 출력
for ele in answer:
print(ele, end= ' ')
n = int(input())
arr = []
for _ in range(n):
kg, cm = map(int, input().split())
arr.append([kg, cm])
solution(arr)
'알고리즘' 카테고리의 다른 글
[백준 10816] 숫자 카드 2 - 자료구조, 정렬(?), 이분탐색(?) (0) | 2022.01.14 |
---|---|
[백준 2805] 나무 자르기 - 이분 탐색 (0) | 2022.01.13 |
[백준 2108] 통계학 - 구현, 정렬 (0) | 2022.01.03 |
[백준 10989] 수 정렬하기 3 (0) | 2021.12.31 |
[백준 10814] 나이순 정렬 - 정렬 (0) | 2021.12.30 |
Comments