본문 바로가기
Algorithm/백준 알고리즘 풀이

[Baekjoon] 1920. 수 찾기

by newnu 2021. 4. 15.
반응형

# Problem

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을 출력한다.

 

# My Answer

import collections

h = collections.defaultdict(list)

n = int(input())
A = list(map(int,input().split()))

for num in A:
    h[num%n].append(num)
    
m = int(input())
B = list(map(int,input().split()))

for num in B:
    if num in h[num%n]:
        print(1)
    else:
        print(0)

 

# Solution 1 - set 자료형 활용

n = int(input())
array = set(map(int, input().split())) 
m = int(input())
x = list(map(int, input().split()))

for i in x:
    if i not in array:
        print('0') 
    else:
        print('1')

 

 

# Solution 2

N,A = int(input()),{i:1 for i in map(int,input().split())}
M = input()

for i in list(map(int,input().split())):
	print(A.get(i,0))

get : A에 i 있으면 A[i] 출력, 없으면 0 출력

반응형