#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#define in(x) freopen(x, "r", stdin)
#define out(x) freopen(x, "w", stdout)
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("-O3")
#define F first
#define S second
#define pb push_back
#define N +100500
#define M ll(1e9 + 7)
#define sz(x) (int)x.size()
#define re return
#define oo ll(1e9)
#define el '\n'
#define pii pair <int, int>
using namespace std;
//using namespace __gnu_pbds;
//typedef tree <int, null_type, less_equal <int> , rb_tree_tag, tree_order_statistics_node_update> ordered_set;
typedef long long ll;
typedef long double ld;
set <pair <int, pair <int, int> > > q;
int mrk[550][550];
char c[550][550];
int go[4][550][550], i, j, n, m, ans, x, y, sx, sy, ex, ey;
void get(int &x, int &y, int &st)
{
x = (*q.begin()).S.F;
y = (*q.begin()).S.S;
st = (*q.begin()).F;
q.erase(q.begin());
}
void put(int x, int y, int st)
{
if (mrk[x][y] < st) return;
q.erase({mrk[x][y], {x, y}});
q.insert({st, {x, y}});
mrk[x][y] = st;
}
void Portal(int x, int y, int st)
{
for (int fst = 0; fst < 4; fst++)
{
for (int sd = 0; sd < 4; sd++)
{
if (fst == sd) continue;
int cx = x;
int cy = y;
if (fst < 2) cy = go[fst][x][y];
else cx = go[fst][x][y];
int nst = st + abs(x - cx) + abs(y - cy) + 1;
if (sd < 2) cy = go[sd][cx][cy];
else cx = go[sd][cx][cy];
put(cx, cy, nst);
}
}
}
void putall(int x, int y, int st)
{
int steps[4][2] = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}};
for (int i = 0; i < 4; i++)
{
int cx = x + steps[i][0];
int cy = y + steps[i][1];
if (cx < 1 || cy < 1 || cx > n || cy > m) continue;
put(cx, cy, st + 1);
}
Portal(x, y, st);
}
int main()
{
srand(time(0));
ios_base::sync_with_stdio(0);
iostream::sync_with_stdio(0);
ios::sync_with_stdio(0);
cin.tie(NULL);
cout.tie(NULL);
// in("input.txt");
// out("output.txt");
cin >> n >> m;
for (i = 1; i <= n; i++)
{
for (j = 1; j <= m; j++)
{
cin >> c[i][j];
if (c[i][j] == 'C') sx = i, sy = j;
if (c[i][j] == 'F') ex = i, ey = j;
if (c[i][j] == '#') mrk[i][j] = -1;
else mrk[i][j] = 1e9;
}
}
for (i = 1; i <= n; i++)
{
for (j = 1; j <= m; j++)
{
if (c[i][j] == '#') go[0][i][j] = j + 1;
else go[0][i][j] = go[0][i][j - 1];
}
for (j = m; j >= 1; j--)
{
if (c[i][j] == '#') go[1][i][j] = j - 1;
else go[1][i][j] = go[1][i][j + 1];
}
}
for (j = 1; j <= m; j++)
{
for (i = 1; i <= n; i++)
{
if (c[i][j] == '#') go[2][i][j] = i + 1;
else go[2][i][j] = go[2][i - 1][j];
}
for (i = n; i >= 1; i--)
{
if (c[i][j] == '#') go[3][i][j] = i - 1;
else go[3][i][j] = go[3][i + 1][j];
}
}
put(sx, sy, 0);
while (sz(q))
{
int st;
get(x, y, st);
putall(x, y, st);
}
if (mrk[ex][ey] == oo) cout << "nemoguce";
else cout << mrk[ex][ey] << el;
}
//
//110000
//1100
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
384 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
512 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
512 KB |
Output is correct |
2 |
Correct |
5 ms |
512 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
512 KB |
Output is correct |
2 |
Correct |
5 ms |
512 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
488 KB |
Output is correct |
2 |
Correct |
5 ms |
512 KB |
Output is correct |
3 |
Correct |
5 ms |
512 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
18 ms |
2816 KB |
Output is correct |
2 |
Correct |
7 ms |
1536 KB |
Output is correct |
3 |
Correct |
16 ms |
1536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
39 ms |
2176 KB |
Output is correct |
2 |
Correct |
8 ms |
2688 KB |
Output is correct |
3 |
Correct |
20 ms |
1792 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
106 ms |
4948 KB |
Output is correct |
2 |
Correct |
66 ms |
3328 KB |
Output is correct |
3 |
Correct |
42 ms |
3840 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
147 ms |
5792 KB |
Output is correct |
2 |
Correct |
17 ms |
6272 KB |
Output is correct |
3 |
Correct |
63 ms |
3968 KB |
Output is correct |
4 |
Incorrect |
57 ms |
4992 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
180 ms |
6592 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |