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
- 파이썬릿코드
- 파이썬알고리즘
- python priority queue
- LeetCode
- 릿코드
- python 릿코드
- 알고리즘풀기
- 파이썬 알고리즘
- binary search
- python sorted
- 알고리즘풀이
- 상가수익률계산기
- 릿코드풀이
- leetcode풀기
- 파이썬릿코드풀기
- 릿코드 풀기
- python zip_longest
- leetcode풀이
- 코틀린기초
- 파이썬알고리즘풀기
- leetcode 풀기
- 파이썬 알고리즘 풀기
- python 알고리즘
- python Leetcode
- 파이썬 프로그래머스
- 릿코드풀기
- 릿코드 파이썬
- python xor
- 파이썬 릿코드
- 잇츠디모
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 2120. Execution of All Suffix Instructions Staying in a Grid 본문
알고리즘/LeetCode
LeetCode 풀기 - 2120. Execution of All Suffix Instructions Staying in a Grid
앤테바 2022. 3. 10. 21:41반응형
2120. Execution of All Suffix Instructions Staying in a Grid
https://leetcode.com/problems/execution-of-all-suffix-instructions-staying-in-a-grid/
문제)
솔루션1) brute force
시간복잡도 : O(N^2)
class Solution:
def executeInstructions(self, n: int, startPos: List[int], s: str) -> List[int]:
dirs = {
'U': [-1, 0],
'D': [1, 0],
'L': [0, -1],
'R': [0, 1],
}
res = []
for i in range(len(s)):
cur_pos = startPos.copy()
move_cnt = 0
for j in range(i, len(s)):
cur_pos[0] += dirs[s[j]][0]
cur_pos[1] += dirs[s[j]][1]
if (0 <= cur_pos[0] < n) and (0 <= cur_pos[1] < n):
move_cnt += 1
else:
break
res.append(move_cnt)
return res
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 71. Simplify Path (0) | 2022.03.15 |
---|---|
LeetCode 풀기 - 2. Add Two Numbers (0) | 2022.03.11 |
LeetCode 풀기 - 413. Arithmetic Slices (0) | 2022.03.09 |
LeetCode 풀기 - 47. Permutations II (0) | 2022.03.08 |
LeetCode 풀기 - 2181. Merge Nodes in Between Zeros (0) | 2022.03.04 |
Comments