일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 게임
- desgin
- 머신러닝
- ML Agent
- 인공지능
- Unity
- pattern
- 강의
- 문제풀이
- 디자인 패턴
- Design
- AI
- LeetCode
- 패턴
- GetComponet
- 유니티
- 성능
- 프로그래밍
- JPS
- C++
- 개발
- A*
- 길 찾기
- 디자인패턴
- 팩토리
- 2번
- Factory
- 디자인
- 알고리즘
- Algorithm
Archives
- Today
- Total
Game Development
LeetCode 5번 Longest Palindromic Substring 본문
문제 링크
문제
Example 1:
Input: s = "babad"
Output: "bab"
Note: "aba" is also a valid answer.
Example 2:
Input: s = "cbbd"
Output: "bb"
Example 3:
Input: s = "a"
Output: "a"
Example 4:
Input: s = "ac"
Output: "a"
풀이
이 문제는 주어진 문자열에서 가장 긴 팰린드롭을 구하면 되는 문제입니다.
class Solution {
private:
string answer;
public:
void Palindrome(int _left, int _right, string& _s)
{
//cout << _left << " " << _right << endl;
while (true)
{
if (_left < 0 || _right >= _s.size())
{
break;
}
else if (_s[_left] != _s[_right])
{
break;
}
else
{
--_left;
++_right;
}
}
int len = _right - _left - 1;
if (answer.size() < len)
{
answer = _s.substr(_left + 1, len);
}
}
string longestPalindrome(string s)
{
for (int i = 0; i < s.size(); i++)
{
Palindrome(i - 1, i + 1, s);
Palindrome(i, i + 1, s); // abba 같은 경우
}
return answer;
}
};
Time Submitted | Status | RunTime | Memory |
07/25/2021 22:22 | Accepted | 28 ms | 14.4 MB |
시간 복잡도 : O(N^2)
'Algorithms > Leet Code' 카테고리의 다른 글
LeetCode 4번 Median of Two Sorted Arrays (0) | 2023.09.23 |
---|---|
LeetCode 6번 ZigZag Conversion (0) | 2021.08.04 |
LeetCode 3번 Longest Substring Without Repeating Characters (0) | 2021.07.25 |
LeetCode 2번 Add Two Numbers (0) | 2021.07.25 |
LeetCode 1번 Two Sum (0) | 2021.07.25 |
Comments