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
- 면접복기
- Greedy
- deque
- springboot
- Python
- github
- Stack
- 그래프 탐색
- 빌더패턴
- GC
- 브루트포스
- 문제풀이
- 몬티홀
- Markdown
- 정수론
- 적정 스레드
- 배열 돌리기1
- BFS
- 분할정복
- 그래프탐색
- 그리디
- DP
- g1gc
- 프로세스
- 마크다운
- 구현
- 백준
- GarbageCollector
- 이진탐색
- 회고
Archives
- Today
- Total
FeelingXD
[백준-1331] 나이트 투어 본문
❓ Problem
🤔 How
❗ Solve
# 나이트 투어
import sys
input =sys.stdin.readline
ROWS=COLOUMS=6
visited=[[False]*6 for _ in range(6)]
moves=[[2,1],[-2,1],[1,2],[1,-2],[-1,2],[-1,-2],[2,-1],[-2,-1]] # 나이트의 이동
def board_to_pos(word): # 체스보드 위치를 좌표로 변환
x=ord(word[0])-ord('A')
y=ROWS-int(word[1])
return (y,x)
def validate_move(s_pos,t_pos): # 현재위치와 다음위치 비교
global visited
cy,cx=s_pos
for dy,dx in moves:
ny,nx=cy+dy,cx+dx
if 0<=ny<ROWS and 0<=nx<COLOUMS and not visited[ny][nx] and (ny,nx)==t_pos:
visited[ny][nx]=True
return True
return False
pass
def solution():
global visited
poses=[board_to_pos(input().strip()) for _ in range(36)]
y,x=poses[0]
for i in range(36):
if not validate_move(poses[i],poses[(i+1)%36]):
return False
return True
pass
if __name__=="__main__": # 실행되는 부분
print("Valid") if solution() else print("Invalid")
pass
'프로그래밍 > 문제풀이' 카테고리의 다른 글
[백준-20006] 랭킹전 대기열 (0) | 2024.02.14 |
---|---|
[백준-16946] 벽 부수고 이동하기 4 🧱🔨 (0) | 2024.01.30 |
[백준-31246] 모바일 광고 입찰 💸 (0) | 2024.01.18 |
[백준- 31216] 슈퍼소수 👀 (0) | 2024.01.14 |
[프로그래머스 - 118667 ] 두 큐 합 같게 하기 (0) | 2024.01.13 |