https://www.acmicpc.net/problem/10816
이문제는 이분탐색으로 분류됐지만 사실 이분탐색을 사용하지는 않았다.
단순히 딕셔너리에 숫자와 그 개수를 담고 그대로 출력하면 된다.
굉장히 간단한 문제다.
from collections import Counter
a = int(input())
arr = list(map(int,input().split()))
arr.sort()
b = int(input())
arr2 =list(map(int,input().split()))
dic = Counter(arr)
for i in arr2:
if i in dic:
print(dic[i],end=' ')
else:
print(0,end=' ')
'알고리즘' 카테고리의 다른 글
백준10815)숫자카드-pyhton (0) | 2023.02.06 |
---|---|
백준1654)랜선 자르기-python (0) | 2023.02.06 |
*프로그래머스)카펫-python (0) | 2023.02.05 |
*프로그래머스)뒤에 있는 큰 수 찾기-python (0) | 2023.02.04 |
프로그래머스)두 큐 합 같게 만들기-pyhton (0) | 2023.02.02 |