#include #include using namespace std; char mat[101][101]; int lmax[101][101]; int n,m; queue qx; queue qy; int lee() { int xn, yn; int x,y; lmax[0][0]=1; qx.push(0); qy.push(0); while(!qx.empty()) { x=qx.front(); qx.pop(); y=qy.front(); qy.pop(); xn=x+1; yn=y; if((xnmaxi) maxi=lmax[i][j]; printf("%d\n",maxi); return 0; }