This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 210;
typedef pair<int, int> pii;
int dist[maxn][maxn];
int ox, oy, dx, dy, n, m;
bool mark[maxn][maxn];
char tab[maxn][maxn];
int linha[] = {-1, 1, 0, 0};
int coluna[] = {0, 0, -1, 1};
void bfs(void)
{
dist[ox][oy] = 0, mark[ox][oy] = true;
queue<pii> fila;
fila.push({ox, oy});
while (!fila.empty())
{
int x = fila.front().first, y = fila.front().second;
fila.pop();
for (int i = 0; i < 4; i++)
{
int a = x+linha[i], b = y+coluna[i];
if (a < 0 || a > n+1 || b < 0 || b > m+1 || mark[a][b] || tab[a][b] == '#') continue;
dist[a][b] = dist[x][y]+1, mark[a][b] = true;
fila.push({a, b});
}
for (int a = x; a >= 1; a--)
{
if (tab[a-1][y] != '#') continue;
if (mark[a][y]) break;
dist[a][y] = dist[x][y]+1, mark[a][y] = true;
fila.push({a, y});
break;
}
for (int a = x; a <= n; a++)
{
if (tab[a+1][y] != '#') continue;
if (mark[a][y]) break;
dist[a][y] = dist[x][y]+1, mark[a][y] = true;
fila.push({a, y});
break;
}
for (int b = y; b >= 1; b--)
{
if (tab[x][b-1] != '#') continue;
if (mark[x][b]) break;
dist[x][b] = dist[x][y]+1, mark[x][b] = true;
fila.push({x, b});
break;
}
for (int b = y; b <= m; b++)
{
if (tab[x][b+1] != '#') continue;
if (mark[x][b]) break;
dist[x][b] = dist[x][y]+1, mark[x][b] = true;
fila.push({x, b});
break;
}
}
}
int main(void)
{
scanf("%d %d", &n, &m);
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
scanf(" %c", &tab[i][j]);
if (tab[i][j] == 'S') ox = i, oy = j;
if (tab[i][j] == 'C') dx = i, dy = j;
}
}
for (int i = 0; i <= n; i++) tab[i][0] = tab[i][m+1] = '#';
for (int j = 0; j <= m; j++) tab[0][j] = tab[n+1][j] = '#';
bfs();
printf("%d\n", dist[dx][dy]);
}
Compilation message (stderr)
portals.cpp: In function 'int main()':
portals.cpp:84:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d", &n, &m);
~~~~~^~~~~~~~~~~~~~~~~
portals.cpp:90:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf(" %c", &tab[i][j]);
~~~~~^~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |