일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- react
- MSA
- Data Structure
- JavaScript
- 백준
- 네트워크
- mongoDB
- OS
- 컴퓨터구조
- 파이썬
- Galera Cluster
- C
- Spring
- JPA
- Proxy
- Kafka
- 알고리즘
- Algorithm
- Heap
- MySQL
- 자바
- 자료구조
- c언어
- 디자인 패턴
- IT
- spring webflux
- design pattern
- redis
- 운영체제
- Java
Archives
- Today
- Total
시냅스
백준 boj 15663 - N과 M(9) (파이썬, python) 본문
https://www.acmicpc.net/problem/15663
백트래킹을 이용하는 기본 문제였다.
다만, 중복에 관한 제약조건들이 있었는데
자기 자신을 출력하면 안되고, 이미 출력한 조합은 다시 출력해서는 안 된다.
자기 자신에 대한 여부는 visited 라는 배열로 관리하였고,
이미 출력한 것에 대한 여부는 printed 라는 배열을 통해 출력한 것들을 저장하여 비교해주었다.
code
n, m = map(int,input().split())
input_list = list(map(int, input().split()))
input_list.sort()
visited = [0] * n
printed = []
ans = []
def dfs(iter):
if iter == m:
if ''.join(map(str, ans)) not in printed: # 출력 여부
printed.append(''.join(map(str, ans)))
print(*ans)
return
for i in range(n):
if not visited[i]: # 자기 자신, 출력 여부에서 else가 없어도 되는 이유이기도 하다.
ans.append(input_list[i])
visited[i] = 1
dfs(iter + 1)
ans.pop()
visited[i] = 0
dfs(0)
'알고리즘' 카테고리의 다른 글
백준 boj 14501 - 퇴사 (파이썬, python) (0) | 2022.02.23 |
---|---|
백준 boj 1759 - 암호 만들기 (파이썬, python) (0) | 2022.02.23 |
백준 boj 1748 - 수 이어 쓰기 1 (파이썬, python) (0) | 2022.02.11 |
백준 boj 9095 - 1, 2, 3 더하기 (파이썬, python) (0) | 2022.02.10 |
백준 boj 1107 - 리모컨 (파이썬, python) (0) | 2022.02.10 |
Comments