반응형
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
- CNN
- Support Vector Machine
- Kaggle
- OpenGL
- 인공지능
- cs231n
- 컴퓨터 비전
- Computer Vision
- 머신러닝
- recommender system
- CPP
- C++
- Regularization
- 비용함수
- SGD
- pre-trained
- 추천 시스템
- 신경망
- 그래픽스
- 파이썬
- SVM
- 딥러닝
- logistic regression
- Vision
- 컴퓨터 그래픽스
- neural network
- 로지스틱 회귀
- Unsupervised learning
- 백준
- petal to metal
Archives
- Today
- Total
kwan's note
백준 15649번 N과 M (3) 파이썬 (python code) 본문
반응형
문제번호:15651
난이도: 실버3
간단한 dfs 백트래킹 문제이다.
1번의 쉬운버전(check 필요 없음)이다.
checklist를 제거하고 동일하게 작성하였다
from sys import stdin
def dfs(cnt):
if(cnt==M):
print(*answer)
return
for i in range(N):
checklist[i]=True
answer.append(numlist[i])
dfs(cnt+1)
answer.pop()
if __name__ == '__main__':
N,M= map(int,stdin.readline().split())
numlist = [i+1 for i in range(N)]
answer=[]
dfs(0)
반응형
'Algorithm > python' 카테고리의 다른 글
백준 1260번 DFS와 BFS 파이썬 (python code) (2) | 2021.01.13 |
---|---|
백준 9633번 NQueen 파이썬 (python code) (0) | 2021.01.12 |
백준-15649번 N과 M (2) 파이썬 (python code) (0) | 2021.01.12 |
백준-2108번 통계학 파이썬 (python code) (0) | 2021.01.12 |
백준-15649번 N과 M (1) 파이썬 (python code) (0) | 2021.01.12 |