Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- js to ts
- error
- 코드업
- Java
- 리덕스장바구니
- 스프링
- 정렬
- 일상
- memory
- codeup
- 공부
- 파이썬
- 협업
- CPU 스케줄링
- OS
- 프로그래머스
- react-redux
- C++
- web
- Spring
- 토이프로젝트
- Redux
- 기초100제
- 알고리즘
- 백준
- 분할메모리할당
- 자료구조
- 타입스크립트
- Operating System
- react
Archives
- Today
- Total
감자튀김 공장🍟
[백준/14425] 문자열 집합 (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
🥺 시간초과
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
s = [input() for _ in range(n)]
count = 0
for _ in range(m):
ms = input()
if ms in s:
count += 1
print(count)
😎 정답 코드
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
s = set([input() for _ in range(n)])
count = 0
for _ in range(m):
ms = input()
if ms in s:
count += 1
print(count)
✔ 설명
입력받은 ms가 s에 있는지 확인 > 있을 경우 count += 1을 한 후 count 값을 리턴하면 된다.
시간초과가 난 경우 list를 사용했으며 통과 코드는 set을 사용했는데 set이 list보다 실행 속도가 더 빠른 것을 알 수 있다.
set의 실행 속도는 O(1)이며, List 실행속도는 O(n)이기 때문에 잦은 탐색이 있다면 set을 사용하는 것이 더 빠르게 접근할 수 있을 것이다.
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/10816] 숫자 카드 2 (with 파이썬) (0) | 2022.12.03 |
---|---|
[백준/1620] 나는야 포켓몬 마스터 이다솜 (with 파이썬) (0) | 2022.12.02 |
[백준/10815] 숫자 카드 (with 파이썬) (0) | 2022.11.30 |
[백준/1436] 영화감독 숌 (with 파이썬) (0) | 2022.11.29 |
[백준/1018] 체스판 다시 칠하기 (with 파이썬) (0) | 2022.11.28 |
Comments