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 |
Tags
- MySQL
- spring cloud
- 백준 16236
- 백준 파이썬
- springboot
- spring security
- re.split
- java
- 백준 16235
- MSA
- 프로래머스
- sql 기술면접
- Kotlin
- with recursive
- 프로그래머스
- java 기술면접
- JPA
- 백준 15685
- JVM
- spring oauth
- 웹어플리케이션 서버
- Spring
- 백준 19238
- 백준
- 백준 16719
- Coroutine
- Spring Boot
- 파이썬
- 백준 17626
- 백준 17779
Archives
- Today
- Total
시작이 반
[백준] 15652번(python 파이썬) 본문
SMALL
N과 M 3에서 중복을 제거한 문제이다.
반복문에
if depth == 0 or solve[depth - 1] <= i: 조건을 추가한다.
이전 노드보다 크거나 같은 숫자에 한에서 반복문을 돌린다.
n, m = map(int, input().split())
solve = []
visited = [False] * (n + 1)
def Dfs(depth):
if depth == m:
print(' '.join(map(str, solve)))
return
for i in range(1, n + 1):
if not visited[i]:
if depth == 0 or solve[depth - 1] <= i:
solve.append(i)
Dfs(depth + 1)
solve.pop()
Dfs(0)
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 15657번(python 파이썬) (0) | 2021.01.10 |
---|---|
[백준] 15654번(python 파이썬) (0) | 2021.01.10 |
[백준] 15651번(python 파이썬) (0) | 2021.01.10 |
[백준] 15650번(python 파이썬) (0) | 2021.01.10 |
[백준] 15649번(python 파이썬) (0) | 2021.01.10 |