https://www.acmicpc.net/problem/10816
해결 방법
> collections의 Counter를 이용한다.
Counter
https://excelsior-cjh.tistory.com/94
Counter | count() | |
접근시간 | O(1) | O(N) |
N번 접근 | O(N) | O(N^2) |
코드
더보기
from collections import Counter
import bisect
num = int(input())
a = list(map(int,input().split()))
num2 = int(input())
b = list(map(int,input().split()))
c= Counter(a)
for i in b:
print(c[i], end=' ')
'알고리즘' 카테고리의 다른 글
백준_1620_나는야 포켓몬 마스터 이다솜 (0) | 2020.02.21 |
---|---|
백준_2110_공유기 설치 (0) | 2020.02.21 |
백준_1654_랜선 자르기(이분 탐색) (0) | 2020.02.19 |
백준_2512_예산(이분 탐색) (0) | 2020.02.18 |
백준_15997_승부 예측 (0) | 2020.02.17 |
댓글