# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
783279 |
2023-07-14T19:35:34 Z |
serifefedartar |
Zoo (COCI19_zoo) |
C++17 |
|
302 ms |
524288 KB |
#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0);cin.tie(0);
typedef long long ll;
#define f first
#define s second
#define MAXN 1000005
int R, C, no = 1, ans = 1;
vector<vector<int>> mark(1005, vector<int>(1005, -1));
vector<vector<int>> graph;
vector<int> delRow = {-1, 0, 0, 1}, depth;
vector<int> delCol = {0, -1, 1, 0};
vector<vector<char>> grid;
bool vis[1005][1005];
bool check(int row, int col) {
if (row <= 0 || row > R || col <= 0 || col > C)
return false;
return true;
}
void addEdge(int from, int to) {
for (auto u : graph[from])
if (u == to)
return ;
graph[from].push_back(to);
graph[to].push_back(from);
}
void dfs(int i, int j) {
vis[i][j] = true;
mark[i][j] = no;
for (int q = 0; q < 4; q++) {
int nRow = i + delRow[q];
int nCol = j + delCol[q];
if (check(nRow, nCol) && grid[nRow][nCol] == grid[i][j] && !vis[nRow][nCol])
dfs(nRow, nCol);
}
}
void dfs2(int i, int j) {
vis[i][j] = true;
for (int q = 0; q < 4; q++) {
int nRow = i + delRow[q];
int nCol = j + delCol[q];
if (!check(nRow, nCol) || grid[i][j] == '*' || vis[nRow][nCol])
continue;
int from = mark[i][j];
int to = mark[nRow][nCol];
if (from != to && from != -1 && to != -1)
addEdge(from, to);
if (grid[nRow][nCol] != '*')
dfs2(nRow, nCol);
}
}
void dfs3(int node, int parent) {
for (auto u : graph[node]) {
if (u == parent)
continue;
depth[u] = depth[node] + 1;
ans = max(ans, depth[u]+1);
dfs3(u, node);
}
}
int main() {
fast
memset(vis, false, sizeof(vis));
string s;
cin >> R >> C;
grid = vector<vector<char>>(R+1, vector<char>(C+1));
for (int i = 1; i <= R; i++) {
cin >> s;
for (int j = 1; j <= C; j++)
grid[i][j] = s[j-1];
}
for (int i = 1; i <= R; i++) {
for (int j = 1; j <= C; j++) {
if (!vis[i][j] && grid[i][j] != '*') {
dfs(i, j);
no++;
}
}
}
graph = vector<vector<int>>(no+1, vector<int>(0));
depth = vector<int>(no+1, 0);
memset(vis, false, sizeof(vis));
dfs2(1, 1);
dfs3(1, -1);
cout << ans << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
302 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
302 ms |
524288 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |