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 |
Tags
- 혼공
- 추천시스템
- 팀 분석
- 브라이틱스 서포터즈
- 모델링
- 혼공머신
- Brightics를 이용한 분석
- 개인 의료비 예측
- 노코드AI
- 혼공학습단
- Brigthics
- 삼성 SDS
- 포스코 청년
- Brigthics를 이용한 분석
- 캐글
- 포스코 아카데미
- 삼성SDS Brigthics
- 데이터 분석
- 데이터분석
- Brightics
- 직원 이직률
- 삼성 SDS Brigthics
- 삼성SDS Brightics
- 혼공머신러닝딥러닝
- 영상제작기
- 삼성SDS
- Brigthics Studio
- 브라이틱스
- 직원 이직여부
- Brightics Studio
Archives
- Today
- Total
데이터사이언스 기록기📚
[프로그래머스/Python] Level 3_단어 변환(DFS) 본문
📌문제 유형
BFS, DFS
📌문제
📌나의 문제풀이
- DFS 이용
- 최소 몇 단계의 과정 -> dfs 밑에 use.remove()로 제거하고 진행하기 (이거 안하면 계속 쌓이기만 함)
def dfs(now, words, use, answer, target, res):
if answer > len(words):
return 0
if now == target:
if res[0] > answer:
res[0] = answer
return
for x in range(len(words)):
d = 0
for y in range(len(words[x])):
if words[x] not in use:
if words[x][y] != now[y]:
d += 1
if d == 1:
if words[x] not in use:
use.append(now) # 현재 사용한 단어 넣기
dfs(words[x], words, use, answer + 1, target, res)
use.remove(now) # 현재 사용한 단어 빼기
def solution(begin, target, words):
answer = 0
result = len(words)
res = [len(words)]
if target not in words:
return 0
for i in range(len(words)):
diff = 0
for j in range(len(words[i])):
if words[i][j] != begin[j]:
diff += 1
if diff == 1:
dfs(words[i], words, [], 1, target, res)
if result > res[0]:
result = res[0]
return result
📌다른사람의 문제풀이
- BFS 활용
from collections import deque
def get_adjacent(current, words):
for word in words:
if len(current) != len(word):
continue
count = 0
for c, w in zip(current, word):
if c != w:
count += 1
if count == 1:
yield word
def solution(begin, target, words):
dist = {begin: 0}
queue = deque([begin])
while queue:
current = queue.popleft()
for next_word in get_adjacent(current, words):
if next_word not in dist:
dist[next_word] = dist[current] + 1
queue.append(next_word)
return dist.get(target, 0)
📌리뷰
- DFS에 대한 개념 제대로 알아가기
- dfs는 리프노드까지 탐색 -> dfs 함수 다음 코드 실행하며 return
- dfs 뒤 use.remove는 노드 올라오면서 하나씩 지우는 것! => 최소값 찾기 가능
728x90
'Coding Test > 프로그래머스(Python)' 카테고리의 다른 글
[프로그래머스/Python] Level 3_최고의 집합(연습문제) (0) | 2024.02.02 |
---|---|
[프로그래머스/Python] Level 3_야근 지수(연습문제) (0) | 2024.02.01 |
[프로그래머스/Python] Level 3_네트워크(BFS) (0) | 2023.11.15 |
[프로그래머스/Python] Level 2_순위 검색 (2021 KAKAO BLIND RECRUITMENT) (0) | 2023.11.12 |
[프로그래머스/Python] Level 2_k진수에서 소수 개수 구하기 (2022 KAKAO BLIND RECRUITMENT) (0) | 2023.11.12 |
Comments