为什么样例只过了20%啊啊啊啊,抓破头也没看出是哪里问题,蹲蹲大佬救救 #include<iostream> #include<algorithm> #include<cstring> using namespace std; int n, m, k; int x[600], y[600], te[600][600]; int ne(int xx,int yy) { int num = 0; if(te[xx-1][yy]) num+=1; if(te[xx+1][yy]) num+=1; if(te[xx][yy-1]) num+=1; if(te[xx]...