티스토리 뷰

알고리즘

이진탐색 모르겠다

killog 2020. 10. 5. 12:38
반응형

이진탐색 문제 푸는데 다 틀리고 이진탐색으로 안풀면 맞췄다

내일도 해야할듯

ㅠㅠ

백준 10816

import collections
N = int(input())
nmaps = list(map(int, input().split()))
nmaps = dict(collections.Counter(nmaps))
M = int(input())
mmaps =  list(map(int, input().split()))
for m in mmaps:
    if m in nmaps:
        print(nmaps[m], end= ' ')
    else:
        print(0, end =' ')

백준 1920번

N = int(input())
origin = list(map(int, input().split()))
M = int(input())
test = list(map(int, input().split()))
for t in test:
    if t in origin :
        print(1)
    else:
        print(0)
반응형
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/11   »
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
글 보관함