728x90
https://www.acmicpc.net/problem/1920
문제
N개의 정수 A[1], A[2], …, A[N]이 주어져 있을 때, 이 안에 X라는 정수가 존재하는지 알아내는 프로그램을 작성하시오.
입력
첫째 줄에 자연수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 줄에는 N개의 정수 A[1], A[2], …, A[N]이 주어진다. 다음 줄에는 M(1 ≤ M ≤ 100,000)이 주어진다. 다음 줄에는 M개의 수들이 주어지는데, 이 수들이 A안에 존재하는지 알아내면 된다. 모든 정수의 범위는 -231 보다 크거나 같고 231보다 작다.
출력
M개의 줄에 답을 출력한다. 존재하면 1을, 존재하지 않으면 0을 출력한다.
728x90
예제 입력 1
5
4 1 5 2 3
5
1 3 7 9 5
예제 출력 1
1
1
0
0
1
이분 탐색
n = int(input())
a = list(map(int, input().split()))
m = int(input())
b = list(map(int, input().split()))
# 이분 탐색 위해 일단 정렬해줌
sorted_a = sorted(a)
for num in b:
start = 0
end = len(a) - 1
while(start < end):
mid = (start + end) // 2
if sorted_a[mid] < num:
start = mid + 1
elif sorted_a[mid] == num:
end = mid
break
else:
end = mid - 1
if sorted_a[end] == num:
print('1')
else:
print('0')
시간 초과
n = int(input())
a = list(map(int, input().split()))
m = int(input())
b = list(map(int, input().split()))
for num in b:
if (num in a) == True:
print('1')
else:
print('0')
728x90
'Problem Solving > BOJ' 카테고리의 다른 글
[백준, BOJ 18301] Rats (python) (0) | 2021.11.28 |
---|---|
[백준, BOJ 1966] 프린터 큐 (python) (0) | 2021.11.27 |
[백준, BOJ 1874] 스택 수열 (python) (0) | 2021.11.27 |
[백준, BOJ 1654] 랜선 자르기 (python) (0) | 2021.11.25 |
[백준, BOJ 1436] 영화감독 숌 (python) (0) | 2021.11.25 |