#include <bits/stdc++.h>
using namespace std;
typedef pair <int, int> pr;
int k, n, m, a[501][501][9][9];
char c[501][501];
const int inf = 1000000000;
pr go[4][501][501];
void afis(pr aux)
{
cout << aux.first << ' ' << aux.second << '\n';
}
// 0 - Up, 1 - Left, 2 - Down, 3 - Right
int d1[] = { -1, 0, 1, 0 };
int d2[] = { 0, 1, 0, -1 };
inline bool in(int i, int j)
{
return i >= 1 && i <= n && j >= 1 && j <= m;
}
inline void prev(int& dir)
{
dir--;
if (dir == -1)
dir = 3;
}
inline void next(int& dir)
{
dir++;
if (dir == 4)
dir = 0;
}
pr get(int dir, int i, int j)
{
if (!in(i, j))
{
if (!i)
i++;
else if (!j)
j++;
else if (i == n + 1)
i--;
else if (j == m + 1)
j--;
return { i, j };
}
if (c[i][j] == 'x')
{
next(dir);
next(dir);
return { i + d1[dir], j + d2[dir] };
}
if (go[dir][i][j].first)
return go[dir][i][j];
int nxDir = dir;
if (c[i][j] == 'A')
prev(nxDir);
else if (c[i][j] == 'C')
next(nxDir);
pr aux = get(nxDir, i + d1[nxDir], j + d2[nxDir]);
go[dir][i][j] = aux;
return aux;
}
inline bool digit(char c)
{
return c >= '0' && c <= '9';
}
void update(pr p, int val, int l, int r)
{
a[p.first][p.second][l][r] = min(val, a[p.first][p.second][l][r]);
}
int main()
{
cin >> k >> m >> n;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
for (int l = 0; l < k; l++)
for (int p = 0; p < k; p++)
a[i][j][l][p] = inf;
cin >> c[i][j];
if (isdigit(c[i][j]))
c[i][j]--;
}
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
for (int l = 0; l <= 3; l++)
get(l, i, j);
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
if (digit(c[i][j]))
{
int aux = (c[i][j] - '0');
a[i][j][aux][aux] = 0;
update(go[0][i][j], 1, aux, aux);
update(go[1][i][j], 1, aux, aux);
update(go[2][i][j], 1, aux, aux);
update(go[3][i][j], 1, aux, aux);
}
for (int l = 2; l <= k; l++)
for (int p = 0; p < k - l + 1; p++)
{
int q = p + l - 1;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
{
for (int t = p; t < q; t++)
update({ i, j }, a[i][j][p][t] + a[i][j][t + 1][q], p, q);
update(go[0][i][j], a[i][j][p][q], p, q);
update(go[1][i][j], a[i][j][p][q], p, q);
update(go[2][i][j], a[i][j][p][q], p, q);
update(go[3][i][j], a[i][j][p][q], p, q);
}
}
int mini = inf;
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
mini = min(mini, a[i][j][0][k - 1]);
cout << mini;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |