acwing 1113. 红与黑(蓝桥杯)
题目:1113. 红与黑#include<bits/stdc++.h>using namespace std;typedef long long LL;typedef pair<int,int >PII;const int N=1e5+10;const int mod=100000007;int fx[4]={0,0,1,-1},fy[4]={1,-1,0,0};int w,h;char a[25][25];int main(){ w