https://www.acmicpc.net/problem/15650
import sys
input = sys.stdin.readline
N,M=map(int,input().split())
visited=[False]*(N+1)
result=[]
def recur(x):
if x==M:
print(' '.join(map(str,result)))
return
for i in range(1,N+1):
if visited[i]==False and (len(result)==0 or result[-1]<i):
visited[i] = True
result.append(i)
recur(x+1)
visited[i]=False
result.pop()
recur(0)
15649번과 비교했을 때, 반복문 내의 조건식에 조건문이 2개 더 추가 되었다.
오름차순 정렬을 위해 추가한 내용이다.
'알고리즘||코딩테스트 > 백준' 카테고리의 다른 글
[백준 16922번] 로마 숫자 만들기 - Python (0) | 2023.06.28 |
---|---|
[백준 15651번] N과 M(3) - Python (0) | 2023.06.28 |
[백준 15649번] N과 M(1) - Python (0) | 2023.06.27 |
[백준 24444번] 알고리즘 수업 - 너비 우선 탐색 1 (0) | 2023.06.26 |
[백준 24479번] 알고리즘 수업 - 깊이 우선 탐색 1 (0) | 2023.06.26 |