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
- 디피
- 영어말하기
- 오픽공부법
- 탑다운
- opic
- 메모이제이션
- 바텀업
- 주석
- dynamicProgramming
- 이진탐색
- English
- stack 스택
- 다이나믹프로그래밍
- 영어회화
- 오픽
- 피보나치수열
- dp
- 안드로이드주석
- XML
- XML주석
- 오픽노잼공부방법
- 오픽노잼
- 이진탐색 #나무 자르기
- 오픽가격
- 안드로이드
- ㅂ
- 오픽점수잘받는방법
- topdown
- fibo
Archives
RUBY
[백준] 베스트셀러 본문
출처:: https://www.acmicpc.net/problem/1302
분류:: 정렬
1. 문제 이해 및 해결과정
2. 풀이방법
1) counter 함수
import sys
from collections import Counter
sys.stdin = open("input.txt","r")
input = sys.stdin.readline
n= int(input())
arr =[]
for _ in range(n):
arr.append(input().rstrip())
cnt = Counter(arr)
#가장 많이 팔린 책
maximum = max(cnt.values())
books = []
for k, v in cnt.items():
if v >= maximum:
maximum = v
books.append(k)
books.sort()
print(books[0])
2) 딕셔너리 dictionary
- 사전 순 비교 : 부등호 활용
import sys
sys.stdin = open("input.txt","r")
n= int(input())
books = {}
for i in range(n):
b = input().strip()
if b not in books :
books[b] = 1
else :
books[b] +=1
sol = []
maximum =0
for b, cnt in books.items():
if cnt > maximum or ( cnt == maximum and b < sol):
sol = b
maximum = cnt
print(sol)
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 수 찾기 (0) | 2024.02.23 |
---|---|
[백준] 문자열 집합 (0) | 2024.02.23 |
[백준] 나이순 정렬 (0) | 2024.02.22 |
[백준] 좌표 압축 (0) | 2024.02.22 |
[백준] 회사에 있는 사람 (0) | 2024.02.22 |
Comments