일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- programmers
- Combinations
- java
- 동적 계획법
- Re
- 추석맞이 코딩챌린지
- BFS
- 그리디
- 백준
- 다익스트라
- divmod
- 이분탐색
- 정렬
- heapq
- 수학
- 프로그래머스
- 위클리 챌린지
- Zip
- dfs
- 정규식
- lambda
- backjoon
- KAKAO BLIND RECRUITMENT
- Set
- DateTime
- 카카오
- 파이썬
- python
- 재귀함수
- 자바
Archives
- Today
- Total
상상쓰
[백준] 과제 본문
https://www.acmicpc.net/problem/13904
아래와 같이 점수를 내림차순으로 날짜가 중복된다면 중복이 생기지 않을 때까지 d 를 1 씩 감소한다. d 가 0 이라는 것은 과제를 포기해야 하는 상황이다.
import sys
from collections import defaultdict
N = int(sys.stdin.readline())
answer = 0
dic = defaultdict(int)
subject = []
for i in range(N):
subject.append(list(map(int, sys.stdin.readline().split())))
subject.sort(key=lambda x : -x[1])
for d, w in subject:
while d > 0:
if dic[d] == 0:
answer += w
dic[d] = 1
break
d -= 1
print(answer)
'Coding Test' 카테고리의 다른 글
[백준] 포도주 시식 (0) | 2021.07.05 |
---|---|
[백준] 한조서열정리하고옴ㅋㅋ (0) | 2021.07.05 |
[프로그래머스] [3차] 자동완성 (0) | 2021.07.02 |
[프로그래머스] 징검다리 (0) | 2021.07.02 |
[프로그래머스] 기능개발 (0) | 2021.07.01 |
Comments