题库练习 Minimum path
← 上一题 下一题 →

A12025 | Minimum path

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a matrix of size $n \times n$ filled with lowercase English letters. You can change no more than $k$ letters in this matrix.

Consider all paths from the upper left corner to the lower right corner that move from a cell to its neighboring cell to the right or down. Each path is associated with the string that is formed by all the letters in the cells the path visits. Thus, the length of each string is $2n - 1$ .

Find the lexicographically smallest string that can be associated with a path after changing letters in at most $k$ cells of the matrix.

A string $a$ is lexicographically smaller than a string $b$ , if the first different letter in $a$ and $b$ is smaller in $a$ .

输入格式

The first line contains two integers $n$ and $k$ ( $1 \le n \le 2000$ , $0 \le k \le n^2$ ) — the size of the matrix and the number of letters you can change.

Each of the next $n$ lines contains a string of $n$ lowercase English letters denoting one row of the matrix.

输出格式

Output the lexicographically smallest string that can be associated with some valid path after changing no more than $k$ letters in the matrix.

输入输出样例

输入 #1
4 2
abcd
bcde
bcad
bcde
输出 #1
aaabcde
输入 #2
5 3
bwwwz
hrhdh
sepsp
sqfaf
ajbvw
输出 #2
aaaepfafw
输入 #3
7 6
ypnxnnp
pnxonpm
nxanpou
xnnpmud
nhtdudu
npmuduh
pmutsnz
输出 #3
aaaaaaadudsnz
C++ 编辑器
输入
输出