반응형
250x250
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
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- leetcode #subsets #dfs #itertools #python
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- 리트코드 #팰린드롬 #파이썬
- gcd #최대공약수 #백준 #2981 #검문
- 코틀린 #Do it #깡샘 #안드로이드
- 아스테리스크 #Asterisk #파이썬
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- leetcode #python #dfs #재귀
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- dfs #python #leetcode #combination
- dfs #leetcode #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #bfs #이진트리 #파이썬 #리트코드
- python #백준 #9375 #패션왕 #신해빈
- 2004 #조합 0의 개수 #백준
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #leetcode #python #graph #그래프
- Python #leetcode #dfs #그래프 #백트래킹
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #bfs #leetcode #python
- 파이썬 #zip
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #python #leetcode
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- final #java #자바 #안드로이드
- dfs #그래프 #graph #python #leetcode #course #schedule
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
Archives
- Today
- Total
멋진 개발자가 되고 싶다
336. Palindrome Pairs 본문
728x90
반응형
문제
단어 리스트에서 words [i] + words [j]가 팰린드롬이 되는 모든 인덱스 조합 (i, j)를 구하라
ex)
Input: words = ["abcd","dcba","lls","s","sssll"]
Output: [[0,1],[1,0],[3,2],[2,4]]
Explanation: The palindromes are ["dcbaabcd","abcddcba","slls","llssssll"]
해설
처음 봤을 땐 브루트포스로 쉽게 해결 가능해 보였지만 역시나 hard 문제답게 TLE가 떠버림..
결국 Trie를 써서 해결해야 되는 문젠데..
Trie 자체는 이해가 되는데 팰린드롬이 되는 경우의 수를 따지는 게 어려웠다.
결국 답도 보고 검색도 해보고 이해는 된 상황!
우선 코드부터 보자!
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
class TrieNode:
def __init__(self):
self.children = collections.defaultdict(TrieNode)
self.word_id = -1
self.palindrome_word_ids = []
class Trie:
def __init__(self):
self.root = TrieNode()
@staticmethod
def is_palindrome(word: str) -> bool:
return word[::] == word[::-1]
# 단어 삽입
def insert(self, index, word) -> None:
node = self.root
for i, char in enumerate(reversed(word)):
if self.is_palindrome(word[0:len(word) - i]):
node.palindrome_word_ids.append(index)
node = node.children[char]
node.word_id = index
def search(self, index, word):
result = []
node = self.root
while word:
# 판별 로직 3
if node.word_id >= 0:
if self.is_palindrome(word):
result.append([index, node.word_id])
if not word[0] in node.children:
return result
node = node.children[word[0]]
word = word[1:]
# 판별 로직 1
if node.word_id >= 0 and node.word_id != index:
result.append([index, node.word_id])
# 판별 로직 2
for palindrome_word_id in node.palindrome_word_ids:
result.append([index, palindrome_word_id])
return result
class Solution:
def palindromePairs(self, words: List[str]) -> List[List[int]]:
trie = Trie()
for i, word in enumerate(words):
trie.insert(i, word)
results = []
for i, word in enumerate(words):
results.extend(trie.search(i, word))
return results
|
cs |
Trie가 뭔지는 알거라 생각하고 설명은 생략하겠음.
판별 로직 1,2,3이 있는데 우선
1. abc + cba같은 케이스
2. abc + ba같은 케이스
3. cb + abc같은 케이스
로 나눌 수 있다.
한 번 팰린드롬이 어떤 케이스로 나눠질 수 있는지 직접 생각해보면 빠르다.
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode/Python]110.균형 이진 트리(Balanced Binary Tree) (0) | 2021.08.08 |
---|---|
[LeetCode/Python] 297.이진 트리 직렬화 & 역직렬화(Serialize and Deserialize Bonary Tree) (0) | 2021.08.08 |
[LeetCode/Python] 226.이진 트리 반전(Invert Binary Tree) (0) | 2021.08.07 |
[LeetCode/Python] 687.가장 긴 동일 값의 경로(Longest Univalue Path) (0) | 2021.08.07 |
[LeetCode/Python] 543.이진 트리의 직경(Diameter of Binary Tree) (0) | 2021.08.07 |