Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- springboot
- 카프카
- 프로그래밍문제
- 코드업
- Spring Boot
- gcp
- 로드밸런서
- VPC
- Elasticsearch
- aws
- Spring Data JPA
- 스프링
- 알고리즘
- Apache Kafka
- 스프링 부트
- 백트래킹
- 클라우드
- 쿠버네티스
- 클라우드 컴퓨팅
- JPA
- 오일러프로젝트
- DFS
- 스프링부트
- 월미도
- 자료구조
- 인천여행
- Kafka
- Docker
- 백준
- Spring
Archives
- Today
- Total
목록2468 (1)
GW LABS
[Backjoon] 안전영역
깊이 우선 탐색을 복습해보면서 재미있는 제약조건을 해결하는 문제였다. 나를 포함한 많은 사람들이 비가 안오는 경우를 놓쳐 정답률이 낮은 것 같다. 깊이 우선 탐색을 하면서 한 번 함수가 종료될 때마다 카운트 변수를 하나씩 늘려주면 조건에 해당하는 영역을 셀 수 있다. import sys sys.setrecursionlimit(10 ** 6) def dfs(row, col, limit_height, table, visited): if visited[row][col]: return dx = [0, 0, 1, -1] dy = [1, -1, 0, 0] visited[row][col] = True for idx in range(4): row_next = row + dy[idx] col_next = col + dx..
Algorithm & DataStructure
2020. 9. 30. 12:13