반응형
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
- Support Vector Machine
- Unsupervised learning
- 파이썬
- Computer Vision
- logistic regression
- SGD
- Kaggle
- Regularization
- SVM
- 로지스틱 회귀
- Vision
- 컴퓨터 그래픽스
- 인공지능
- recommender system
- pre-trained
- 컴퓨터 비전
- 딥러닝
- petal to metal
- 머신러닝
- CPP
- CNN
- 추천 시스템
- 신경망
- 비용함수
- C++
- 백준
- cs231n
- neural network
- 그래픽스
- OpenGL
Archives
- Today
- Total
kwan's note
백준-15649번 N과 M (1) 파이썬 (python code) 본문
반응형
문제번호:15649
난이도: 실버3
간단한 dfs 백트래킹 문제이다.
삼성 sds 동계알고리즘 특강을 들으며 dfs문제 이해가 오래걸려 기본문제부터 풀어보게 되었다.
from sys import stdin
def dfs(cnt):
if(cnt==M):
print(*answer)
return
for i in range(N):
if(checklist[i]==False):
checklist[i]=True
answer.append(numlist[i])
dfs(cnt+1)
answer.pop()
checklist[i]=False
if __name__ == '__main__':
N,M= map(int,stdin.readline().split())
numlist = [i+1 for i in range(N)]
answer=[]
checklist = [False]*N
dfs(0)
반응형
'Algorithm > python' 카테고리의 다른 글
백준-15649번 N과 M (2) 파이썬 (python code) (0) | 2021.01.12 |
---|---|
백준-2108번 통계학 파이썬 (python code) (0) | 2021.01.12 |
백준-11399번 ATM 파이썬 (python code) (0) | 2021.01.10 |
백준-2751번 파이썬 input() vs sys.stdin.readline() (0) | 2021.01.10 |
백준-1436번 영화감독 숌 파이썬 (python code) (0) | 2021.01.10 |