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 | 31 |
Tags
- 리덕스장바구니
- memory
- Operating System
- 코드업
- react-redux
- 파이썬
- C++
- Spring
- Redux
- codeup
- 알고리즘
- error
- 자료구조
- 백준
- js to ts
- web
- 일상
- 공부
- react
- 프로그래머스
- 스프링
- 정렬
- 기초100제
- Java
- 협업
- 분할메모리할당
- CPU 스케줄링
- 토이프로젝트
- 타입스크립트
- OS
Archives
- Today
- Total
목록15650 (1)
감자튀김 공장🍟
[백준/15650] N과 M (2) (with 파이썬)
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline n, m = map(int, input().split()) res = [] def dfs(x): if len(res) == m: print(' '.join(map(str, res))) return for i in range(x, n+1): if i not in res: res.append(i) dfs(i + 1) res.pop() dfs(1) ✔ 설명 재귀함수를 이용해서 풀 수 있다. for문에서 (시작, n+1)까지를 범위로 잡아 dfs를 돌면 된다. ex) dfs(1) > res[1] > dfs(2) > res[1, 2] > dfs(3) > len(res) == 2 이므로 print, return > pop() > ..
Algorithm/BOJ
2022. 12. 28. 23:09