티스토리 뷰
알고리즘/Leetcode
[Leetcode]3211. Generate Binary Strings Without Adjacent Zeros
응애~ 개발자 2024. 8. 11. 02:48728x90
반응형
문제 요약
- 알고리즘 분류: 재귀호출
- 난이도: Medium
- 문제내용:
- 문자열 길이 n이 있다.
- 문자열에는 0과 1만 올수 있다.
- 0뒤에는 1만 올 수 있다.
- 사이트 주소: https://leetcode.com/problems/generate-binary-strings-without-adjacent-zeros/description/
문제풀이
이번 문제는 간단한 재귀호춣 구현이다. 구현은 아래와 같이 하면된다.
- 끝에 숫자가 1일때만 0추가하고 재귀호출한다.
- 뒤에 1을 추가하고 재귀호출한다.
- 문자열길이가 n일때 리스트에 추가한다.
재귀호출 기본적인 문제라서 문제 푸는데는 어렵지 않다. 위에 처럼 구현 하면 시간 복잡도는 O(2^n)만큼 나온다.
Code
Python
class Solution:
def validStrings(self, n: int) -> List[str]:
result = []
# 재귀함수
def recursion(s: str):
if len(s) == n:
result.append(s)
return
# 뒤에 1이면 0을 추가한다.
if(len(s) == 0 or s[-1] == '1'):
recursion(s + '0')
recursion(s + '1')
recursion("")
return result
Java
class Solution {
List<String> result;
int length;
public List<String> validStrings(int n) {
result = new ArrayList<>();
length = n;
recursion( "");
return result;
}
/*
* 재귀 호출 함수
*/
public void recursion( String s){
if(s.length() == length){
result.add(s);
return;
}
// 끝에 숫자가 1일때 뒤에 0을 추가 한다.
if(s.isEmpty() || s.charAt(s.length() - 1) == '1'){
recursion( s + '0');
}
recursion( s + '1');
}
}
728x90
반응형
'알고리즘 > Leetcode' 카테고리의 다른 글
[Leetcode]1038. Binary Search Tree to Greater Sum Tree (0) | 2024.08.18 |
---|---|
[Leetcode]935. Knight Dialer (0) | 2024.08.14 |
[Leetcode]2130. Maximum Twin Sum of a Linked List (0) | 2024.08.02 |
[Leetcode]807. Max Increase to Keep City Skyline (0) | 2024.08.01 |
[Leetcode]3137. Minimum Number of Operations to Make Word K-Periodic (0) | 2024.07.30 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 파이썬
- LeetCode
- 구현
- spring-boot
- 수학
- 동적 계획법
- java
- JSCODE
- BFS
- 조합
- 배열
- level2
- 누적합
- 동적계획법
- BaekJoon
- Programmerse
- 자바
- 알고리즘
- 넓이 우선 탐색
- 재귀호출
- 백트레킹
- DFS
- 백준
- Greedy
- DP
- 그래프
- 이론
- Python
- 문자열
- 그리디
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함