Home [TIL] 99클럽 코테 스터디 6기 4일차 TIL - [그래프] 안전 영역
Post
Cancel

[TIL] 99클럽 코테 스터디 6기 4일차 TIL - [그래프] 안전 영역

오늘의 문제

2468. 안전 영역(실버1)

키워드

그래프, 완전탐색, BFS/DFS, Brute force

나의 풀이

1
2
3
4
5
N, M = map(int, input().split())
r, c, d = map(int, input().split())
grid = [input().split() for _ in range(N)]

print(grid)

회고

This post is licensed under CC BY 4.0 by the author.

[TIL] 99클럽 코테 스터디 6기 3일차 TIL - [배열] 바탕화면 정리

[TIL] 99클럽 코테 스터디 6기 5일차 TIL - 수열(슬라이딩 윈도우)

Comments powered by Disqus.

Comments powered by Disqus.