https://www.acmicpc.net/problem/15652
백준 15652 'N과 M (4)' 문제입니다.
재귀함수 공부하기 좋은 문제인 것 같습니다.
재귀함수는 조건문+ 재귀로 이루어져 있는데 그 부분을 잘 이해하시면 쉬울 것 같습니다.
n, m = map(int, input().split())
s = []
def dfs():
if len(s) == m:
print(' '.join(map(str, s)))
return
for i in range(1, n+1):
if not s or s[-1] <= i:
s.append(i)
dfs()
s.pop()
dfs()
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 15657번 : N과 M (8) (0) | 2022.03.03 |
---|---|
파이썬) 백준 알고리즘 | 15655번 : N과 M (6) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15656번 : N과 M (7) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15654번 : N과 M (5) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15651번 : N과 M (3) (0) | 2022.03.03 |
댓글