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
- 정렬
- Java
- 자료구조
- 스프링
- Spring
- react-redux
- 토이프로젝트
- Operating System
- 코드업
- memory
- js to ts
- 기초100제
- Redux
- 알고리즘
- error
- web
- codeup
- 파이썬
- 협업
- 프로그래머스
- react
- 분할메모리할당
- OS
- 공부
- 타입스크립트
- 백준
- C++
- 일상
- CPU 스케줄링
- 리덕스장바구니
Archives
- Today
- Total
감자튀김 공장🍟
[백준/15649] N과 M (1) (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
🌱 itertools 없이 풀기 (재귀 사용)
import sys
input = sys.stdin.readline
def perm(arr, n):
res = []
if n == 0:
return [[]]
for i in range(len(arr)):
x = arr[i]
for j in perm(arr[:i] + arr[i+1:], n-1):
res.append([x] + j)
return res
n, m = map(int, input().split())
arr = [i for i in range(1, n+1)]
ans = perm(arr, m)
for i in ans:
print(*i)
⭐ itertools 사용
from itertools import permutations
n, m = map(int, input().split())
numbers = []
for i in range(1, n+1):
numbers.append(i)
perm = list(permutations(numbers, m))
for x in perm:
print(*x)
✔ 후기
사실 itertools 모듈 사용해서 푸는 방법이 훨!씬! 간단하고 이해도 빠른데
나중에 모듈 없이 사용할 수도 있으니까 해당 방법으로도 풀어봤다.
근데 재귀가 이루어지는 과정이 잘 이해가 안가서 손으로 디버깅 해봤다 _¢(T-T*)
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/15651] N과 M (3) (with 파이썬) (0) | 2022.12.29 |
---|---|
[백준/15650] N과 M (2) (with 파이썬) (0) | 2022.12.28 |
[백준/2004] 조합 0의 개수 (with 파이썬) (0) | 2022.12.25 |
[백준/1676] 팩토리얼 0의 개수 (with 파이썬) (0) | 2022.12.24 |
[백준/9375] 패션왕 신해빈 (with 파이썬) (0) | 2022.12.23 |
Comments