문제 링크 : www.acmicpc.net/problem/15649
순열 경우의 수들을 출력하는 것으로, itertools에 있는 permutations()을 이용하면 간단하게 해결할 수 있다.
import sys
from itertools import permutations
N, M = map(int, sys.stdin.readline().split())
nums = list(range(1, N+1))
for permutation in permutations(nums, M):
print(*permutation)
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 14888번 - 연산자 끼워넣기 (0) | 2021.01.04 |
---|---|
[백준] 15650번 - N과 M(2) (0) | 2021.01.03 |
[백준] 14891번 - 톱니바퀴 (0) | 2021.01.03 |
[백준] 1449번 - 수리공 항승 (0) | 2021.01.03 |
[백준] 4796번 - 캠핑 (0) | 2021.01.03 |