본문 바로가기
Problem Solving/BOJ

[Python]17070. 파이프 옮기기1

by 부르르 2019. 4. 12.

https://www.acmicpc.net/problem/17070

 

17070번: 파이프 옮기기 1

유현이가 새 집으로 이사했다. 새 집의 크기는 N×N의 격자판으로 나타낼 수 있고, 1×1크기의 정사각형 칸으로 나누어져 있다. 각각의 칸은 (r, c)로 나타낼 수 있다. 여기서 r은 행의 번호, c는 열의 번호이고, 행과 열의 번호는 1부터 시작한다. 각각의 칸은 빈 칸이거나 벽이다. 오늘은 집 수리를 위해서 파이프 하나를 옮기려고 한다. 파이프는 아래와 같은 형태이고, 2개의 연속된 칸을 차지하는 크기이다. 파이프는 회전시킬 수 있으며, 아래와 같이

www.acmicpc.net


 

처음엔 DFS형태로 check배열 생성한다음 모든 경로를 다 탐색했으나..

계속 60% 쯤에서 계속 시간초과가 발생했다.

다시 생각해보니 굳이 방문확인을 안해도, if문 조건 분기에 의해 가능한 모든 경우를 탐색하므로 가볍게 풀 수 있다.

 

 

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
32
33
34
35
36
37
38
39
def recur(curr_y,curr_x, pipe_type):
    global n, answer
 
    if (curr_y, curr_x) == (n-1, n-1):
        answer += 1
        return
 
    else:
        if pipe_type == 0:
            if curr_x+1 < n and MAP[curr_y][curr_x+1== '0':
                recur(curr_y, curr_x+10)
 
            if curr_y+1 < n and curr_x+1 < n and MAP[curr_y][curr_x+1== '0' and MAP[curr_y+1][curr_x+1== '0' and MAP[curr_y+1][curr_x] == '0':
                recur(curr_y+1, curr_x+11)
 
        elif pipe_type == 1:
            if curr_x + 1 < n and MAP[curr_y][curr_x + 1== '0':
                recur(curr_y, curr_x + 10)
 
            if curr_y + 1 < n and curr_x + 1 < n and MAP[curr_y][curr_x + 1== '0' and MAP[curr_y + 1][
                curr_x + 1== '0' and MAP[curr_y + 1][curr_x] == '0':
                recur(curr_y + 1, curr_x + 11)
 
            if curr_y + 1 < n and MAP[curr_y+1][curr_x] == '0':
                recur(curr_y+1, curr_x, 2)
 
        elif pipe_type == 2:
            if curr_y + 1 < n and curr_x + 1 < n and MAP[curr_y][curr_x + 1== '0' and MAP[curr_y + 1][
                curr_x + 1== '0' and MAP[curr_y + 1][curr_x] == '0':
                recur(curr_y + 1, curr_x + 11)
 
            if curr_y + 1 < n and MAP[curr_y+1][curr_x] == '0':
                recur(curr_y+1, curr_x, 2)
 
= int(input())
MAP = [input().split() for _ in range(n)]
answer = 0
recur(0,1,0)
print(answer)
cs
728x90
반응형

'Problem Solving > BOJ' 카테고리의 다른 글

[Python]13335. 트럭  (0) 2019.04.13
[Python]16985. Maaaaaaaaaaze  (0) 2019.04.12
[Python]16918. 봄버맨  (0) 2019.04.11
[Python]5373. 큐빙  (0) 2019.04.11
[Python]16939. 2x2x2 큐브  (0) 2019.04.10

댓글