반응형
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
- 비용함수
- OpenGL
- 컴퓨터 그래픽스
- Support Vector Machine
- 파이썬
- Vision
- 추천 시스템
- cs231n
- SGD
- SVM
- CPP
- 신경망
- C++
- 그래픽스
- Unsupervised learning
- Regularization
- Kaggle
- petal to metal
- neural network
- 컴퓨터 비전
- 머신러닝
- logistic regression
- 인공지능
- CNN
- 로지스틱 회귀
- pre-trained
- recommender system
- Computer Vision
- 백준
- 딥러닝
Archives
- Today
- Total
kwan's note
백준-15649번 N과 M (2) 파이썬 (python code) 본문
반응형
문제번호:15650
난이도: 실버3
기존 1번문제에서
reminder-by-kwan.tistory.com/47 길이가 이전숫자보다 새로 들어오는 숫자가 커야한다는 조건을 추가하였다
from sys import stdin
def dfs(cnt):
if cnt == M:
print(*answer)
return
for i in range(N):
if (checkist[i]==False and (numlist[i]>answer[len(answer)-1 ]if len(answer) >0 else 1)):
checkist[i]=True
answer.append(numlist[i])
dfs(cnt+1)
answer.pop()
checkist[i]=False
if __name__ == '__main__':
N,M= map(int,stdin.readline().split())
answer=[]
checkist=[False]*N
numlist=[i+1 for i in range(N)]
dfs(0)
반응형
'Algorithm > python' 카테고리의 다른 글
백준 9633번 NQueen 파이썬 (python code) (0) | 2021.01.12 |
---|---|
백준 15649번 N과 M (3) 파이썬 (python code) (0) | 2021.01.12 |
백준-2108번 통계학 파이썬 (python code) (0) | 2021.01.12 |
백준-15649번 N과 M (1) 파이썬 (python code) (0) | 2021.01.12 |
백준-11399번 ATM 파이썬 (python code) (0) | 2021.01.10 |