CF1031D.Minimum path

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a matrix of size n×nn \times n filled with lowercase English letters. You can change no more than kk 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 2n12n - 1 .

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

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

输入格式

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

Each of the next nn lines contains a string of nn 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 kk 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
    

说明/提示

In the first sample test case it is possible to change letters 'b' in cells (2,1)(2, 1) and (3,1)(3, 1) to 'a', then the minimum path contains cells (1,1),(2,1),(3,1),(4,1),(4,2),(4,3),(4,4)(1, 1), (2, 1), (3, 1), (4, 1), (4, 2), (4, 3), (4, 4) . The first coordinate corresponds to the row and the second coordinate corresponds to the column.

首页