티스토리 뷰
문제
코드
n = int(input())
n_list = list(map(int, input().split()))
m = int(input())
m_list = list(map(int, input().split()))
n_list.sort()
def binary_search(value, start, end):
if start > end : return False
median = (start + end) // 2
if n_list[median] > value:
return binary_search(value, start, median-1)
elif n_list[median] < value:
return binary_search(value, median+1, end)
else:
return True
for item in m_list:
if binary_search(item, 0, n-1):
print(1)
else:
print(0)
'알고리즘' 카테고리의 다른 글
[algorithm] 백준 1966 - 프린터 큐 (파이썬) (0) | 2022.04.29 |
---|---|
[algorithm] 백준 1874 - 스택 수열 (파이썬) (0) | 2022.04.21 |
[algorithm] 백준 9461 - 파도반 수열 (파이썬) (0) | 2022.04.09 |
[algorithm] 백준 11726 - 2xn 타일링 (파이썬) (0) | 2022.04.04 |
[algorithm] leetcode 771 - Jewels and Stones (파이썬) (0) | 2022.03.28 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- mysql 8.0
- Algorithm
- 문자열
- 김영한
- 알고리즘
- MySQL
- 스프링 부트
- 백준
- 자료구조
- leetcode
- 코테
- 구현
- 스프링
- 파이썬
- 리팩토링
- Spring
- 코틀린
- 정렬
- 노마드코더
- webflux
- spring boot
- 북클럽
- kotlin
- 릿코드
- 스프링부트
- 노마드
- Real MySQL
- 그리디
- 인프런
- 데이터베이스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함