1368. Minimum Cost to Make at Least One Valid Path in a Grid

二维坐标转换为一维索引的公式 在一个有 m 行、n 列的网格中,可以用公式将坐标 (x, y) 转换为一维索引 cur_pos:cur_pos = x * n + y 逆向转换:一维索引到二维坐标 如果需要从一维索引恢复二维坐标 (x, y): x = cur_pos // n(整除获取行号)…