백준 13460번 삼성기출 구술탈출2
문제의 알고리즘 자체는 어려운편은 아니지만, 예외 케이스가 많고 기저 사건이 다양하기 때문에 문제를 잘읽고 코드는 최대한, 실수가 나지 않게끔 길어지더라도, 명확하게 분류해서 잘짜는게 중요한듯 합니다. 알고리즘은 기본적인 BFS 최단 문제입니다. #include #include #include #include #include using namespace std; int N, M; string Map[10]; int dx[4] = {-1,1,0,0}; int dy[4] = {0,0,-1,1}; int oy, ox; int bx, by; int rx, ry; struct pos { int bx, by; int rx, ry; int cnt; pos(int by, int bx,int ry,int rx, int ..
2020. 4. 20.