반응형
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
- 머신러닝
- C++
- 그래픽스
- OpenGL
- 신경망
- 추천 시스템
- logistic regression
- pre-trained
- SGD
- 파이썬
- Kaggle
- Regularization
- Computer Vision
- 컴퓨터 그래픽스
- Support Vector Machine
- 컴퓨터 비전
- Unsupervised learning
- 로지스틱 회귀
- CNN
- 인공지능
- petal to metal
- 딥러닝
- cs231n
- 비용함수
- 백준
- Vision
- recommender system
- SVM
- CPP
- neural network
Archives
- Today
- Total
kwan's note
백준 9633번 NQueen 파이썬 (python code) 본문
반응형
난이도: 골드5
번호:9633번
백트래킹문제로 python3는 시간을 만족시키지 못해 pypy3로 제출하여 통과하였다.
row를 기준으로 한줄씩 내려가면서 모든 column에 숫자를 넣을 수 있는지 체크하면서 풀어내려갔다.
from sys import stdin
def queendfs(row):
global count
if (row==N):
count +=1
return
for j in range(N):
checkpoint = True
for n in range(len(queenlist)):
if queenlist[n][1] == j or abs(queenlist[n][0] - row) - abs(queenlist[n][1] - j) == 0:
checkpoint=False
break
if checkpoint==True:
queenlist.append([row,j])
queendfs(row+1)
queenlist.pop()
if __name__ == '__main__':
N= int(stdin.readline().rstrip())
count=0
queenlist=[]
queendfs(0)
print(count)
반응형
'Algorithm > python' 카테고리의 다른 글
백준 7576번 토마토 파이썬 (python code) (0) | 2021.01.14 |
---|---|
백준 1260번 DFS와 BFS 파이썬 (python code) (2) | 2021.01.13 |
백준 15649번 N과 M (3) 파이썬 (python code) (0) | 2021.01.12 |
백준-15649번 N과 M (2) 파이썬 (python code) (0) | 2021.01.12 |
백준-2108번 통계학 파이썬 (python code) (0) | 2021.01.12 |