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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #include <stdio.h> #include <queue> using namespace std; struct _pair{ int y; int x; int cnt; }; queue<_pair> q; int R, C; bool map[101][101]; bool visited[101][101]; int main(void){ scanf("%d %d", &R, &C); getchar(); for(int r = 0; r < R; r++){ for(int c = 0; c < C; c++){ map[r][c] = getchar() - '0'; }getchar(); } q.push({0, 0, 1}); visited[0][0] = true; int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; while(!q.empty()){ _pair p = q.front(); q.pop(); if(p.y == R - 1 && p.x == C - 1){ printf("%d", p.cnt); break; } for(int i = 0; i < 4; i++){ int ny = p.y + dy[i]; int nx = p.x + dx[i]; if(ny < 0 || ny >= R || nx < 0 || nx >= C || map[ny][nx] == 0||visited[ny][nx]){ continue; } visited[ny][nx] = true; q.push({ny, nx, p.cnt + 1}); } } } | cs |
'알고리즘' 카테고리의 다른 글
백준(BOJ) 11726 (0) | 2018.11.25 |
---|---|
백준(BOJ) 2920 (0) | 2018.11.25 |
알고스팟(algospot) JLIS (0) | 2018.11.13 |
백준(BOJ) 11053 (0) | 2018.11.13 |
알고스팟(algospot) WILDCARD (0) | 2018.11.13 |