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
- stack 스택
- opic
- 주석
- 피보나치수열
- ㅂ
- 오픽점수잘받는방법
- fibo
- 메모이제이션
- English
- topdown
- 오픽
- 이진탐색 #나무 자르기
- 안드로이드
- 디피
- 다이나믹프로그래밍
- 영어말하기
- XML
- 바텀업
- 오픽노잼
- 이진탐색
- 오픽공부법
- XML주석
- 오픽노잼공부방법
- dp
- 오픽가격
- 영어회화
- 탑다운
- 안드로이드주석
- dynamicProgramming
Archives
RUBY
[백준] 모든 수열 본문
출처:: www.acmicpc.net/problem/10974
분류:: dfs
1. 문제 이해 및 해결과정
1) dfs , 결과배열, 체크배열 따로 두는 경우
2) dfs, 결과배열에 숫자까지 넣어서
3) permutation 라이브러리 이용
- 속도가 가장 빠르다
2. 풀이방법
1) dfs , 결과배열, 체크배열 따로 두는 경우
#모든 순열
#https://www.acmicpc.net/problem/10974
import sys
sys.stdin = open("input.txt","r")
n=int(input())
ch=[False]*(n+1)
res=[0]*(n)
def dfs(d):
if d==n:
print(' '.join(map(str,res)))
else:
for i in range(1,n+1):
if ch[i]==True:
continue
res[d]=i #결과배열
ch[i]=True
dfs(d+1)
ch[i]=False #체크해제
dfs(0)
2) dfs, 결과배열에 숫자까지 넣어서
#모든 순열
#https://www.acmicpc.net/problem/10974
import sys
sys.stdin = open("input.txt","r")
n=int(input())
res=[0]*(n)
def dfs(d):
if d==n:
print(' '.join(map(str,res)))
else:
for i in range(1,n+1):
if i in res: #res에 i가 이미 있으면 skip
continue
res[d]=i #결과배열
dfs(d+1)
res[d]=0
dfs(0)
3) permutation 라이브러리 이용
#모든 순열
#https://www.acmicpc.net/problem/10974
import sys
from itertools import permutations
sys.stdin = open("input.txt","r")
n=int(input())
arr = [ i for i in range(1,n+1)]
selected=list(permutations(arr,n))
for i in range(len(selected)):
print(' '.join(map(str,selected[i])))
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 숨박꼭질6 (0) | 2020.10.03 |
---|---|
[백준] 로또 (0) | 2020.10.02 |
[백준] 합분해 (0) | 2020.10.02 |
[백준] 다음 순열 (0) | 2020.10.02 |
[백준] 가장 긴 바이토닉 부분 수열 (0) | 2020.10.02 |
Comments