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
- 머신러닝
- programmers
- Special String Again
- 알고리즘
- Find the nearest clone
- Recursion: Davis' Staircase
- 해커랭크
- BFS: Shortest Reach in a Graph
- Reverse Shuffle Merge
- 파이썬
- 백준
- 코딩테스트
- Algorithm
- Roads and Libraries
- 피보나치 함수
- 야근지수
- DFS: Connected Cell in a Grid
- candies
- Interview Preparation Kit
- 격파르타 합격후기
- 격파르타 장점
- 매칭점수
- python
- [sqld]자격증합격
- hackerrank
- 격파르타 후기
- 프로그래머스
- Common Child
- Max Array Sum
- 구슬탈출2
Archives
- Today
- Total
목록DFS: Connected Cell in a Grid (1)
Archive
[Hackerrank] [Hard] DFS: Connected Cell in a Grid
https://www.hackerrank.com/challenges/ctci-connected-cell-in-a-grid/problem DFS: Connected Cell in a Grid | HackerRank Find the largest connected region in a 2D Matrix. www.hackerrank.com 풀이 0과 1로 구성된 grid가 주어지면, 1을 기준으로 한 영역의 최댓값을 구하는 문제. 8가지 방향에 1이 있으면 같은 영역이라 가정.(왼쪽 대각선 위부터 시계방향) visited를 확인하기 위한 matrix 만들고, 방향 정보 리스트 만들고, stack을 사용해 dfs 구현하면 됨. def maxRegion(grid): n = len(grid) m = len(grid..
카테고리 없음
2020. 9. 5. 16:41