문제 출처 : https://www.acmicpc.net/problem/15657
🔥 작성 코드
def sol(lst):
if len(result) == M:
a = [x for x in result]
arr.append(a)
return
else:
for i in range(N):
if result:
if result[-1] <= lst[i]:
result.append(lst[i])
sol(lst)
result.pop()
else:
result.append(lst[i])
sol(lst)
result.pop()
N, M = map(int, input().split())
lst = list(map(int, input().split()))
result = []
arr = []
sol(lst)
arr.sort()
for i in range(len(arr)):
print(*arr[i])
⭕ 해설
- N과 M(7) 문제에서 비내림차순 정렬 조건이 생겼습니다.
- N과 M(4)에서 구현한 조건과 똑같습니다.
N과 M(7) 해설 바로가기 ↓
2022.03.04 - [Algorithm/BAEKJOON] - [백준 BOJ] 15656 N과 M(7) (python)
N과 M(4) 해설 바로가기 ↓
2022.03.04 - [Algorithm/BAEKJOON] - [백준 BOJ] 15652 N과 M(4) (python)
'Algorithm > BAEKJOON' 카테고리의 다른 글
[백준 BOJ] 17070 파이프 옮기기 1 (python) (0) | 2022.03.14 |
---|---|
[백준 BOJ] 10971 외판원 순회2 (python) (0) | 2022.03.09 |
[백준 BOJ] 15656 N과 M(7) (python) (0) | 2022.03.04 |
[백준 BOJ] 15655 N과 M(6) (python) (0) | 2022.03.04 |
[백준 BOJ] 15654 N과 M(5) (python) (0) | 2022.03.04 |