Lang:C#
Edit12345678910111213141516171819202122232425262728293031using System;using System.IO;using System.Linq;class Program{static void Main(string[] args){string[] tokens = Console.ReadLine().Split(' ');int N = int.Parse(tokens[0]);int M = int.Parse(tokens[1]);int[,] maze = new int[N + 2, M + 2];int[,,] dp = new int[N + 2, M + 2, 2];for (int i = 0; i < N + 2; i++){for (int j = 0; j < M + 2; j++){maze[i, j] = 1;dp[i, j, 0] = -1;dp[i, j, 1] = -1;}}for (int i = 1; i <= N; i++){char[] grids = Console.ReadLine().ToArray();for (int j = 0; j < M; j++){maze[i, j + 1] = grids[j] == '.' ? 0 : 1;}}