-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver IV] Title: 카드, Time: 120 ms, Memory: 42900 KB -BaekjoonHub
- Loading branch information
1 parent
f056021
commit 4127dd8
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# [Silver IV] 카드 - 11652 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/11652) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 42900 KB, 시간: 120 ms | ||
|
||
### 분류 | ||
|
||
자료 구조, 해시를 사용한 집합과 맵, 정렬 | ||
|
||
### 제출 일자 | ||
|
||
2024년 9월 14일 13:58:23 | ||
|
||
### 문제 설명 | ||
|
||
<p>준규는 숫자 카드 N장을 가지고 있다. 숫자 카드에는 정수가 하나 적혀있는데, 적혀있는 수는 -2<sup>62</sup>보다 크거나 같고, 2<sup>62</sup>보다 작거나 같다.</p> | ||
|
||
<p>준규가 가지고 있는 카드가 주어졌을 때, 가장 많이 가지고 있는 정수를 구하는 프로그램을 작성하시오. 만약, 가장 많이 가지고 있는 정수가 여러 가지라면, 작은 것을 출력한다.</p> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 준규가 가지고 있는 숫자 카드의 개수 N (1 ≤ N ≤ 100,000)이 주어진다. 둘째 줄부터 N개 줄에는 숫자 카드에 적혀있는 정수가 주어진다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫째 줄에 준규가 가장 많이 가지고 있는 정수를 출력한다.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
""" | ||
[풀이] | ||
- cnt table 작성 | ||
- sort (nlogn = 10^5*5 < 1초) | ||
""" | ||
|
||
import sys | ||
|
||
readline = lambda: sys.stdin.readline().strip() | ||
# readline = input | ||
N = int(readline()) | ||
cnt_table = {} | ||
|
||
for i in range(N): | ||
num = int(readline()) | ||
prev = cnt_table.get(num, 0) | ||
|
||
cnt_table[num] = prev + 1 | ||
|
||
|
||
result = 2**62 # inf | ||
max_cnt = 0 | ||
for num, cnt in cnt_table.items(): | ||
if (cnt > max_cnt) or (cnt == max_cnt and num < result): | ||
max_cnt = cnt | ||
result = num | ||
|
||
|
||
print(result) |