This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
* In the name of GOD
* author : Behradm
**/
#include "bits/stdc++.h"
using namespace std;
#define sz(x) (int) ((x).size())
short dx[4] = {0, 0, 1, -1};
short dy[4] = {1, -1, 0, 0};
const int N = 4e3 + 3;
char s[N][N];
int tag[N][N];
vector<pair<int, int>> pep[N * N];
vector<int> h;
queue<int> q;
int n, m;
bool Good(int x, int y) {
return (0 <= x && x < n && 0 <= y && y < m && s[x][y] != '.');
}
void dfs(int i, int j, int c) {
bool ok = 1;
for (int k = 0; k < 4; k++) {
int x = i + dx[k], y = j + dy[k];
if (Good(x, y) && s[x][y] != s[i][j])
ok = 0;
}
if (!ok)
pep[c].push_back({i, j});
tag[i][j] = c;
for (int k = 0; k < 4; k++) {
int x = i + dx[k], y = j + dy[k];
if (Good(x, y) && s[x][y] == s[i][j] && tag[x][y] == -1) {
dfs(x, y, c);
}
}
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m;
if (n == 1 && m == 1)
return cout << 1 << '\n', 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> s[i][j];
tag[i][j] = -1;
}
}
int c = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (tag[i][j] == -1 && s[i][j] != '.')
dfs(i, j, c++);
}
}
h.resize(c);
q.push(0), h[0] = 1;
int ans = 1;
while (!q.empty()) {
int u = q.front();
q.pop();
for (auto [i, j] : pep[u]) {
for (int k = 0; k < 4; k++) {
int x = i + dx[k], y = j + dy[k];
if (Good(x, y) && s[x][y] != s[i][j]) {
int v = tag[x][y];
if (h[v] == 0) {
q.push(v);
h[v] = h[u] + 1;
ans = max(ans, h[v]);
}
}
}
}
}
cout << ans << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |