반응형
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
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- dfs #leetcode #python
- dfs #python #leetcode #combination
- leetcode #python #dfs #재귀
- 파이썬 #zip
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- dfs #python #leetcode
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- dfs #bfs #leetcode #python
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- leetcode #subsets #dfs #itertools #python
- 2004 #조합 0의 개수 #백준
- dfs #그래프 #graph #python #leetcode #course #schedule
- dfs #bfs #이진트리 #파이썬 #리트코드
- 리트코드 #팰린드롬 #파이썬
- 아스테리스크 #Asterisk #파이썬
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- dfs #leetcode #python #graph #그래프
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- Python #leetcode #dfs #그래프 #백트래킹
- 코틀린 #Do it #깡샘 #안드로이드
- final #java #자바 #안드로이드
- gcd #최대공약수 #백준 #2981 #검문
- python #백준 #9375 #패션왕 #신해빈
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode] 5. 가장 긴 팰린드롬 부분 문자열(Longest Palindrom Substring) 본문
Algorithm Study/leetcode
[LeetCode] 5. 가장 긴 팰린드롬 부분 문자열(Longest Palindrom Substring)
오패산개구리 2021. 6. 26. 23:04728x90
반응형
가장 긴 팰린드롬 부분 문자열을 출력하라
Input: s = "babad"
Output: "bab"
Note: "aba" is also a valid answer.
내가 직접 푼 코드
,,,
해설 :
아쉽게도 없다...
나는 이 문제를 풀지 못했기 때문이다.
우선 나는 처음에 홀수 팰린드롬만 생각하고 코드를 짰다.
하지만 아쉽게도 팰린드롬은 bb와 같이 짝수인 경우도 있다.
그리고 무엇보다 s [::-1]을 응용하여 역순과 정순을 비교하여 팰린드롬을 찾으려 했지만
초반부에 s[0:-1:-1]이 계산이 안돼서 깔끔하게 만들지 못할 것 같아 3시간 고민하고 gg...
** 깔끔한 답안 **
1. 중앙을 중심으로 확장하는 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class Solution:
def longestPalindrome(self, s: str) -> str:
# 팰린드롬 판별 및 투 포인터 확장
def expand(left: int, right: int) -> str:
while left >= 0 and right < len(s) and s[left] == s[right]:
left -= 1
right += 1
return s[left + 1:right]
#해당 사항이 없을 때 빠르게 리턴
if len(s) < 2 or s == s[::-1]:
return s
result = ''
# 슬라이딩 윈도우 우측으로 이동
for i in range(len(s) - 1):
result = max(result, expand(i, i+1), expand(i, i+2), key=len)
return result
|
cs |
해설:
expend 함수부터 보자.
two pointer(left, right)를 이용하여
팰린드롬일 경우 반대 방향으로 한칸씩 진행하며 반복하여 팰린드롬 여부를 판별한다.
그리고 s가 너무 짧아 반복문을 수행할 수 없거나, s 전체가 팰린드롬일 경우 바로 값을 반환한다.
반복문을 보면, expand(i,i+1), expand(i, i+2)이 각각 짝수 팰린드롬, 홀수 팰린드롬을 맡는다.
key는 len으로 설정하여 길이가 가장 긴 것을 result로 취한다.
출처 : 파이썬 알고리즘 인터뷰 (글 : 박상길 그림 : 정진호) [책만]
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode] 42. 빗물 트래핑(Trapping Rain Water) (0) | 2021.06.27 |
---|---|
[LeetCode] 1.두 수의 합(Two Sum) (0) | 2021.06.27 |
[LeetCode] 49. 그룹 애너그램(Group Anagrams) (0) | 2021.06.26 |
[LeetCode] 819. 가장 흔한 단어(Most Common Word) (0) | 2021.06.25 |
[LeetCode] 937. 로그 파일 재정렬(Reorder Log Files) (0) | 2021.06.25 |