BaekJoon 4179 불!
2019. 2. 1.
Link https://www.acmicpc.net/problem/4179 소스결과 3956 KB / 32 ms 출처 Baekjoon, Waterloo's Local Programming Contest 2009 언어 C++ 17 분류 BFS DFS 다익스트라 설명 BOJ 5427 - 불 문제와 유사합니다. 설명 및 알고리즘 - > 링크 https://girlfriend-yerin.tistory.com/70 소스코드 #include #include using namespace std; const int MAX = 1000; const short posX[4] = { 0, 1, 0, -1 }; const short posY[4] = { 1, 0, -1, 0 }; struct Point { short x; s..