일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dfs
- python
- heapq
- 프로그래머스
- Zip
- divmod
- 그리디
- 카카오
- 다익스트라
- lambda
- BFS
- programmers
- 파이썬
- Combinations
- 자바
- backjoon
- 백준
- 위클리 챌린지
- 이분탐색
- 동적 계획법
- Set
- 추석맞이 코딩챌린지
- 정렬
- java
- KAKAO BLIND RECRUITMENT
- DateTime
- 재귀함수
- Re
- 수학
- 정규식
Archives
- Today
- Total
상상쓰
[프로그래머스] [3차] 자동완성 본문
https://programmers.co.kr/learn/courses/30/lessons/17685
저번에 Trie 자료구조를 유튜브를 통해서 배운 적이 있는데 문제를 보고 Trie 를 이용해야겠다고 생각이 났다.
문자열을 한 문자씩 정의하여 dictionary 에 담아서 dictionary[] 의 길이를 가지고 몇 번의 입력으로 자동완성이 되는지를 판별해주면 된다.
예를 들어, dictionary['g'] 의 길이가 2개 이상이라면 'g' 를 입력했을 때 2개의 단어를 추천해주므로 자동완성을 할 수 가 없다. 또한 'go' 와 'gone' 에서 dictionary['g']['o'] 의 길이는 1이나 'go' 를 입력했을 때 'go', 'gone' 을 추천해주므로 단어가 끝날 때 '!' 를 추가하여 구분해준다.
class Trie:
dictionary = {}
def insert(self, string):
current_dic = self.dictionary
for i in string:
if i not in current_dic:
current_dic[i] = {}
current_dic = current_dic[i]
current_dic['!'] = '!'
def check(self, string):
current_dic = self.dictionary
count = 0
for i in string:
if len(current_dic[i]) == 1:
count += 1
else:
count = 0
current_dic = current_dic[i]
return len(string) if count == 0 else len(string) - count + 1
def solution(words):
answer = 0
T = Trie()
for i in words:
T.insert(i)
for i in words:
answer += T.check(i)
return answer
print(solution(['go', 'gone', 'guild'])) # 7
참고 : https://www.youtube.com/watch?v=7e1b70dTAd4
'Coding Test' 카테고리의 다른 글
[백준] 한조서열정리하고옴ㅋㅋ (0) | 2021.07.05 |
---|---|
[백준] 과제 (0) | 2021.07.02 |
[프로그래머스] 징검다리 (0) | 2021.07.02 |
[프로그래머스] 기능개발 (0) | 2021.07.01 |
[백준] 게임을 만든 동준이 (0) | 2021.07.01 |
Comments