728x90
반응형
(1) 1~N까지 자연수 중, 중복 없이 M개를 고른 수열
- nPm 문제
n, m = map(int,input().split())
arr = []
def solution():
if len(arr) == m:
print(' '.join(map(str,arr)))
return
for i in range(1,n+1):
if i not in arr:
arr.append(i)
solution()
arr.pop()
solution()
(2) 1~N까지 자연수 중, 중복 없이 M개를 고른 수열 + 오름차순
- nCm 문제
n, m = map(int,input().split())
arr = []
def solution(start):
if len(arr) == m:
print(' '.join(map(str,arr)))
return
for i in range(start,n+1):
if i not in arr:
arr.append(i)
solution(i+1)
arr.pop()
solution(1)
(3) 1~N까지 자연수 중, 중복을 포함하여 M 개를 고른 수열
- 같은 수를 여러번 골라도 된다.
-mㅠn 문제
n,m = map(int,input().split())
arr = []
cnt = 0
def solution():
global cnt
if len(arr) == m:
cnt += 1
print(' '.join(map(str,arr)))
return
for i in range(1,n+1):
arr.append(i)
solution()
arr.pop()
solution()
print(cnt)
(4) 1~N까지 자연수 중, 중복을 포함하여 M개를 고른 수열 + 오름차순
- 먼문젠지 잘 모르겠음
n,m = map(int,input().split())
arr = []
cnt = 0
def solution(start):
global cnt
if len(arr) == m:
cnt += 1
print(' '.join(map(str,arr)))
return
for i in range(start,n+1):
arr.append(i)
solution(i)
arr.pop()
solution(1)
print(cnt)
728x90
반응형
'알고리즘 > DFS, BFS, 시뮬, 백트래킹' 카테고리의 다른 글
[백준] 2630번 색종이 만들기 (0) | 2022.05.17 |
---|---|
[알고리즘] 미로탐색(DFS) with Java, 초기화 전략 (0) | 2022.04.22 |
[프로그래머스] N-Queen 문제 (0) | 2021.11.09 |
[프로그래머스] 타겟 넘버 - BFS (0) | 2021.09.20 |
[백준] 단지번호 붙이기 - BFS (0) | 2021.09.20 |