https://www.acmicpc.net/problem/17070
처음엔 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+1, 0)
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+1, 1)
elif pipe_type == 1:
if curr_x + 1 < n and MAP[curr_y][curr_x + 1] == '0':
recur(curr_y, curr_x + 1, 0)
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 + 1, 1)
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 + 1, 1)
if curr_y + 1 < n and MAP[curr_y+1][curr_x] == '0':
recur(curr_y+1, curr_x, 2)
n = 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 |
댓글