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
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
Archives
- Today
- Total
기록
프로그래머스_python_빛의 경로 사이클 본문
문제
https://programmers.co.kr/learn/courses/30/lessons/86052
풀이
1. 모든 위치에서 상하좌우로 접근을 시도한다.
2.
(i, j) 에 →으로 빛이 접근하는 경우,
(i, j) 에 ←으로 빛이 접근하는 경우,
(i, j) 에 ↑으로 빛이 접근하는 경우,
(i, j) 에 ↓으로 빛이 접근하는 경우는
모든 경로를 통틀어 유일하므로, 중복체크를 하면서 탐색한다.
코드
def solution(grid):
size_R, size_C = len(grid), len(grid[0])
passed = [[list() for j in range(size_C)] for i in range(size_R)]
# 탐색
def travel(r, c, dr, dc, w) :
while (dr, dc) not in passed[r][c] :
passed[r][c].append((dr, dc))
new_r, new_c = (r+dr)%size_R, (c+dc)%size_C
if grid[new_r][new_c] == "L" : dr, dc = -dc, dr
elif grid[new_r][new_c] == "R" : dr, dc = dc, -dr
r, c, w = new_r, new_c, w+1
return w
# 모든 위치에서 상하좌우로 접근 시도
ans = list()
for i in range(size_R) :
for j in range(size_C) :
for dr, dc in [(0, 1), (0, -1), (1, 0), (-1, 0)] :
if (dr, dc) not in passed[i][j] :
ans.append(travel(i, j, dr, dc, 0))
return sorted(ans)
'코딩테스트 > python' 카테고리의 다른 글
프로그래머스_python_징검다리 건너기 (0) | 2022.02.03 |
---|---|
프로그래머스_python_트리 트리오 중간값 (0) | 2022.02.02 |
프로그래머스_python_순위 검색 (0) | 2022.01.12 |
프로그래머스_python_도둑질 (0) | 2022.01.10 |
프로그래머스_아이템 줍기 (0) | 2022.01.08 |
Comments