usingnamespace std; int n, m, cnt; // x * m + y; string ans; string s[31]; int dx[] = { 0, 0, 1, -1 }; int dy[] = { 1, -1, 0, 0 }; int vis[31][31]; int vis2[31][31];
boolcut(int x, int y, string now) { for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { vis2[i][j] = 0; } } queue<pair<int, int>> q; q.push({ x, y }); vis2[x][y] = 1; int count = 0; while (q.size()) { auto [xx, yy] = q.front(); q.pop(); for (int i = 0; i < 4; i++) { int fx = xx + dx[i]; int fy = yy + dy[i]; if (fx < 0 || fx >= n || fy < 0 || fy >= m) { continue; } if (s[fx][fy] == '#') { continue; } if (vis2[fx][fy] || vis[fx][fy]) { continue; } q.push({ fx, fy }); count++; vis2[fx][fy] = 1; if (count + now.size() > ans.size()) returnfalse; } } if (count + now.size() < ans.size()) returntrue; if (count + now.size() == ans.size()) { if (ans > now) { returntrue; } } returnfalse; }
voiddfs(int x, int y, string now) { if (cut(x, y, now)) { return; } vis[x][y] = 1; for (int i = 0; i < 4; i++) { int fx = x + dx[i]; int fy = y + dy[i]; if (fx < 0 || fx >= n || fy < 0 || fy >= m) { continue; } if (s[fx][fy] == '#' || vis[fx][fy]) { continue; } string tmp = now + s[fx][fy]; dfs(fx, fy, tmp); } vis[x][y] = 0; if (ans.size() < now.size()) { ans = now; } elseif (ans.size() == now.size()) { ans = max(ans, now); } } intmain() { while (cin >> n >> m && n && m) { for (int i = 0; i < n; i++) { cin >> s[i]; }
ans = ""; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (s[i][j] != '#') { string tmp = ""; tmp += s[i][j]; dfs(i, j, tmp); } } } cout << ans << endl; } return0; }