Lang:G++
Edit12345678910111213141516171819202122232425262728293031#include <iostream>#include <vector>using namespace std;const char block = 'b';inline bool OutBoard(int N, int M, int i, int j) {return !(i >= 0 && i < N && j >= 0 && j < M);}int MinGridChanged(int N, int M, vector< vector<char> > &maze) {//source: (0, 0), destination: (N-1, M-1)pair<int, int> source(0, 0);pair<int, int> destination(N - 1, M - 1);//only move to right or bottom is allowedconst int right = 0;const int bottom = 1;const int maxChange = 1000;//move operator in different directionint movei[2] = { 0, 1 };int movej[2] = { 1, 0 };//minGridChange[i][j][direc] represent the minimum grid changes if move to (i, j) in different directionvector< vector< vector<int> > > minGridChange(N, vector< vector<int> >(M, vector<int>(2, maxChange)));//init the minGraidChange in source. (At the beginning ,the robot keeps moving to the right.)minGridChange[0][0][right] = 0;if(maze[0][0] == block){minGridChange[0][0][right]++;