#include <bits/stdc++.h>
using namespace std;
const int inf = 1e9;
const int Nmax = 404;
int cells, n, m, nr;
bool bad;
char a[Nmax][Nmax];
int ans[Nmax][Nmax];
int Upper[Nmax][Nmax], Lower[Nmax][Nmax];
vector<pair<pair<int,int>, int>> v;
void add_upper(int x, int y);
void add_lower(int x, int y)
{
if(Lower[x][y] == 1) bad = 1;
if(Lower[x][y]) return;
Lower[x][y] = 1;
v.push_back({{x, y}, 0});
++cells;
if(a[x][y] == 'N') /// adaug dreapta
{
if(a[x][y+1] == 'N')
add_lower(x, y+1);
else if(a[x][y+1] == 'Z')
add_upper(x, y+1);
if(x - 1 >= 1)
add_lower(x-1, y);
}
else
{
if(a[x][y-1] == 'N')
add_upper(x, y-1);
else if(a[x][y-1] == 'Z')
add_lower(x, y-1);
if(x - 1 >= 1)
add_lower(x-1, y);
}
Lower[x][y] = 2;
}
void add_upper(int x, int y)
{
if(Upper[x][y] == 1) bad = 1;
if(Upper[x][y]) return;
Upper[x][y] = 1;
v.push_back({{x, y}, 1});
++cells;
if(a[x][y] == 'N') /// adaug dreapta
{
if(a[x][y-1] == 'N')
add_upper(x, y-1);
else if(a[x][y-1] == 'Z')
add_lower(x, y-1);
if(x + 1 <= n)
add_upper(x+1, y);
}
else
{
if(a[x][y+1] == 'N')
add_lower(x, y+1);
else if(a[x][y+1] == 'Z')
add_upper(x, y+1);
if(x + 1 <= n)
add_upper(x+1, y);
}
Upper[x][y] = 2;
}
void solve1(int c)
{
int i, j;
for(i=1; i<=n; ++i)
for(j=1; j<=m; ++j)
Lower[i][j] = Upper[i][j] = 0;
cells = 0;
bad = 0;
for(i=1; i<=n; ++i)
{
++nr;
add_lower(i, c);
if(!bad) ans[i][c] = min(ans[i][c], cells);
for(auto it : v)
if(it.second == 0) Lower[it.first.first][it.first.second] = -1;
else Upper[it.first.first][it.first.second] = -1;
v.clear();
}
}
void solve2(int c)
{
int i, j;
for(i=1; i<=n; ++i)
for(j=1; j<=m; ++j)
Lower[i][j] = Upper[i][j] = 0;
cells = 0;
bad = 0;
for(i=n; i; --i)
{
++nr;
add_upper(i, c);
if(!bad) ans[i][c] = min(ans[i][c], cells);
for(auto it : v)
if(it.second == 0) Lower[it.first.first][it.first.second] = -1;
else Upper[it.first.first][it.first.second] = -1;
v.clear();
}
}
int main()
{
// freopen("input", "r", stdin);
cin.tie(0); cin.sync_with_stdio(false);
cin >> n >> m;
int i, j;
for(i=1; i<=n; ++i) cin >> (a[i] + 1);
for(i=1; i<=n; ++i)
for(j=1; j<=m; ++j)
ans[i][j] = inf;
for(i=1; i<=m; ++i)
solve1(i);
for(i=1; i<=m; ++i)
solve2(i);
for(i=1; i<=n; ++i)
for(j=1; j<=m; ++j)
cout << (ans[i][j] == inf ? -1 : 2 * ans[i][j]) << " \n"[j==m];
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
640 KB |
Output is correct |
4 |
Correct |
1 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
640 KB |
Output is correct |
6 |
Correct |
19 ms |
1024 KB |
Output is correct |
7 |
Correct |
8 ms |
640 KB |
Output is correct |
8 |
Correct |
8 ms |
640 KB |
Output is correct |
9 |
Correct |
5 ms |
640 KB |
Output is correct |
10 |
Correct |
8 ms |
768 KB |
Output is correct |
11 |
Correct |
15 ms |
768 KB |
Output is correct |
12 |
Correct |
8 ms |
640 KB |
Output is correct |
13 |
Correct |
14 ms |
768 KB |
Output is correct |
14 |
Correct |
14 ms |
768 KB |
Output is correct |
15 |
Correct |
4 ms |
640 KB |
Output is correct |
16 |
Correct |
6 ms |
640 KB |
Output is correct |
17 |
Correct |
6 ms |
640 KB |
Output is correct |
18 |
Correct |
6 ms |
672 KB |
Output is correct |
19 |
Correct |
6 ms |
640 KB |
Output is correct |
20 |
Correct |
6 ms |
640 KB |
Output is correct |
21 |
Correct |
6 ms |
640 KB |
Output is correct |
22 |
Correct |
6 ms |
640 KB |
Output is correct |
23 |
Correct |
7 ms |
640 KB |
Output is correct |
24 |
Correct |
13 ms |
768 KB |
Output is correct |
25 |
Correct |
13 ms |
768 KB |
Output is correct |
26 |
Correct |
10 ms |
896 KB |
Output is correct |
27 |
Correct |
7 ms |
640 KB |
Output is correct |
28 |
Correct |
10 ms |
896 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
640 KB |
Output is correct |
4 |
Correct |
1 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
640 KB |
Output is correct |
6 |
Correct |
19 ms |
1024 KB |
Output is correct |
7 |
Correct |
8 ms |
640 KB |
Output is correct |
8 |
Correct |
8 ms |
640 KB |
Output is correct |
9 |
Correct |
5 ms |
640 KB |
Output is correct |
10 |
Correct |
8 ms |
768 KB |
Output is correct |
11 |
Correct |
15 ms |
768 KB |
Output is correct |
12 |
Correct |
8 ms |
640 KB |
Output is correct |
13 |
Correct |
14 ms |
768 KB |
Output is correct |
14 |
Correct |
14 ms |
768 KB |
Output is correct |
15 |
Correct |
4 ms |
640 KB |
Output is correct |
16 |
Correct |
6 ms |
640 KB |
Output is correct |
17 |
Correct |
6 ms |
640 KB |
Output is correct |
18 |
Correct |
6 ms |
672 KB |
Output is correct |
19 |
Correct |
6 ms |
640 KB |
Output is correct |
20 |
Correct |
6 ms |
640 KB |
Output is correct |
21 |
Correct |
6 ms |
640 KB |
Output is correct |
22 |
Correct |
6 ms |
640 KB |
Output is correct |
23 |
Correct |
7 ms |
640 KB |
Output is correct |
24 |
Correct |
13 ms |
768 KB |
Output is correct |
25 |
Correct |
13 ms |
768 KB |
Output is correct |
26 |
Correct |
10 ms |
896 KB |
Output is correct |
27 |
Correct |
7 ms |
640 KB |
Output is correct |
28 |
Correct |
10 ms |
896 KB |
Output is correct |
29 |
Correct |
6 ms |
384 KB |
Output is correct |
30 |
Correct |
2 ms |
2432 KB |
Output is correct |
31 |
Execution timed out |
8041 ms |
22936 KB |
Time limit exceeded |
32 |
Halted |
0 ms |
0 KB |
- |