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
- 삼성 #코테 #2020상반기 #c++
- c++
- Smilegate
- 투포인터
- 식단
- BaekJoon
- 1편
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- BFS
- 스마일게이트
- LIS #Algorithm #요소추적
- 유니온파인드
- 카카오
- 알고리즘
- 백준
- Union-find
- 중반부
- 보석쇼핑
- Algorithm
- 소감
- 서버개발캠프
- 코딩테스트
- 카카오인턴
- 코테
Archives
- Today
- Total
짱아의 개발 기록장
LeetCode : 131. Palindrome Partitioning (Backtracking + String) 본문
Algorithm/LeetCode
LeetCode : 131. Palindrome Partitioning (Backtracking + String)
jungahshin 2021. 2. 16. 22:35반응형
[메인 로직]
String에 Backtracking을 가미한 문제였다!
0~i까지 탐색해보면서 팰린드롬이 되면 다음 idx값을 넣어주고~
계속 재귀로 들어가다가 idx==s.size()가 된다면 리턴해주면 된다.
코드를 참고하면 더 이해가 빠를 듯 하다.
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
|
class Solution {
public:
vector<vector<string>> ans;
bool check(int Start, int End, string s){
int half = (End+1-Start)/2; // 양쪽을 비교할 횟수
for(int i=0; i<half; i++){
if(s[Start+i]!=s[End-i]) return false;
}
return true;
}
void dfs(int idx, string s, vector<string> &v){
if(idx==s.size()){
ans.push_back(v);
return;
}
int size = s.size();
for(int i=idx; i<s.size(); i++){
if(check(idx, i, s)){
v.push_back(s.substr(idx, i-idx+1));
dfs(i+1, s, v);
v.pop_back();
}
}
}
vector<vector<string>> partition(string s) {
int size = s.size();
vector<string> v;
for(int i=0; i<s.size(); i++){
if(check(0, i, s)){
v.push_back(s.substr(0, i+1));
dfs(i+1, s, v);
v.pop_back();
}
}
return ans;
}
};
|
cs |
반응형
'Algorithm > LeetCode' 카테고리의 다른 글
LeetCode : 496. Next Greater Element I (0) | 2021.07.20 |
---|---|
LeetCode : 463. Island Perimeter(Array) (0) | 2021.07.16 |
LeetCode : 132. Palindrome Partitioning II (BFS+String) (0) | 2021.02.16 |
LeetCode : 72. Edit Distance (0) | 2021.02.05 |
LeetCode : 202. Happy Number (0) | 2021.02.04 |
Comments