https://www.acmicpc.net/problem/15650
백준 15650 'N과 M (2)' 문제입니다.
기본 'N과 M' 문제에서
if i not in s:
if not s or s[-1] < i:
위 조건문을 추가해주었습니다.
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 i not in s:
if not s or s[-1] < i:
s.append(i)
dfs()
s.pop()
dfs()
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 15664번 : N과 M (10) (0) | 2022.03.03 |
---|---|
파이썬) 백준 알고리즘 | 15663번 : N과 M (9) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15657번 : N과 M (8) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15655번 : N과 M (6) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15652번 : N과 M (4) (0) | 2022.03.03 |
댓글