일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ubuntu
- 다이나믹 프로그래밍
- HUFS 모각코 캠프
- 머신러닝과 딥러닝
- SQL
- MySQL
- 백준 1331번
- 그리디
- 백준 1253번
- 백준 18310번
- react
- Python
- AWS
- 알고리즘
- 백준 16918번
- javascript
- SWEA 15612번
- 백준 15787번
- 백준 1987
- 그래프
- 백준
- 다이나믹프로그래밍
- 명품자바
- 자바
- java_programming
- 깃헙
- 모각코
- 백준 17451번
- 백준 3085번
- 백준 2512번
Archives
- Today
- Total
차곡차곡
[BOJ/Python] 백준 9017번 - 크로스 컨트리 본문
백준 #9017 크로스 컨트리
https://www.acmicpc.net/problem/9017
import sys
from collections import Counter
input = sys.stdin.readline
T = int(input())
for _ in range(T):
N = int(input())
teams = list(map(int, input().split()))
counter = Counter(teams)
scores = {}
rank = 1
for i in range(N):
if counter[teams[i]] == 6:
if teams[i] in scores:
scores[teams[i]].append(rank)
else:
scores[teams[i]] = [rank]
rank += 1
print(sorted(scores, key = lambda x:(sum(scores[x][0:4]), scores[x][4]))[0])
- Counter
- 배열을 인자로 넘기면 각 원소가 몇 번씩 나오는지 객체(딕셔너리 형태) 반환
'CS > Algorithm' 카테고리의 다른 글
[BOJ/Python] 백준 19637번 - IF문 좀 대신 써줘 (0) | 2024.08.08 |
---|---|
[BOJ/Python] 백준 19941번 - 햄버거 분배 (0) | 2024.07.11 |
[BOJ/Java] 백준 3184번 - 양 (2) | 2023.08.21 |
[BOJ/Java] 백준 5567번 - 결혼식 (0) | 2023.08.18 |
[BOJ/Java] 백준 18353번 - 병사 배치하기 (0) | 2023.08.18 |
Comments