#include namespace { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-function" #include #pragma GCC diagnostic pop using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair; using VI = vector; using VVI = vector; using VL = vector; using VVL = vector; const int di[] = {1, 0}; const int dj[] = {0, 1}; } int main() { ios::sync_with_stdio(false); cin.tie(0); int h, w; cin >> h >> w; vector s(h); rep(i, h) cin >> s[i]; string ans(1, s[0][0]); vector

pos{{0, 0}}; auto idxchk = [&](int i, int j) { return 0 <= i && i < h && 0 <= j && j < w; }; vector> visited(h, vector(w)); rep(_, h - 1 + w - 1) { vector

nxt; char mn = 'z' + 1; for(auto [i, j]: pos) { if (visited[i][j]) continue; visited[i][j] = true; rep(k, 2) { int ni = i + di[k], nj = j + dj[k]; if (!idxchk(ni, nj)) continue; if (s[ni][nj] < mn) { mn = s[ni][nj]; nxt.clear(); nxt.emplace_back(ni, nj); } else if (s[ni][nj] == mn) { nxt.emplace_back(ni, nj); } } } ans += mn; swap(pos, nxt); } cout << ans << '\n'; }