[BOJ]17070. 파이프 옮기기1
BOJ 17070 문제 바로가기
문제의 저작권은 백준 온라인저지에 있습니다.
문제
나의코드
import sys
input=sys.stdin.readline
# 오, 대각선, 아래
dx=[0, 1, 1]
dy=[1, 1, 0]
def DFS(x, y, way):
global answer
if x==N-1 and y==N-1:
answer+=1
return
else:
# 오른쪽으로 보내기
if way==0 or way==1:
if 0<=y+1<N and house[x][y+1]==0:
DFS(x, y+1, 0)
# 대각선으로 보내기
if 0<=y+1<N and 0<= x+1<N and house[x][y+1]==0 and house[x+1][y] == 0 and house[x+1][y+1] == 0:
DFS(x+1, y+1, 1)
# 아래로 보내기
if way==1 or way==2:
if 0<=x+1<N and house[x+1][y]==0:
DFS(x+1, y, 2)
N=int(input())
house=[list(map(int, input().split())) for _ in range(N)]
answer=0
DFS(0,1,0)
print(answer)
Author And Source
이 문제에 관하여([BOJ]17070. 파이프 옮기기1), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@jjungminyy/BOJ17070.-파이프-옮기기1
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import sys
input=sys.stdin.readline
# 오, 대각선, 아래
dx=[0, 1, 1]
dy=[1, 1, 0]
def DFS(x, y, way):
global answer
if x==N-1 and y==N-1:
answer+=1
return
else:
# 오른쪽으로 보내기
if way==0 or way==1:
if 0<=y+1<N and house[x][y+1]==0:
DFS(x, y+1, 0)
# 대각선으로 보내기
if 0<=y+1<N and 0<= x+1<N and house[x][y+1]==0 and house[x+1][y] == 0 and house[x+1][y+1] == 0:
DFS(x+1, y+1, 1)
# 아래로 보내기
if way==1 or way==2:
if 0<=x+1<N and house[x+1][y]==0:
DFS(x+1, y, 2)
N=int(input())
house=[list(map(int, input().split())) for _ in range(N)]
answer=0
DFS(0,1,0)
print(answer)
Author And Source
이 문제에 관하여([BOJ]17070. 파이프 옮기기1), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jjungminyy/BOJ17070.-파이프-옮기기1저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)