B. Yet Another Crosses Problem

B. Yet Another Crosses Problem_第1张图片B. Yet Another Crosses Problem_第2张图片B. Yet Another Crosses Problem_第3张图片B. Yet Another Crosses Problem_第4张图片
//读题真的很重要,现在英语太差了吧,都看不懂题,哭了,打cf的时候,B题的题意愣是没懂
http://codeforces.com/contest/1194/problem/B
//后来看了下别人写的,555
//理解了一下题意其实很简单,就是找缺少黑色最少的行列

#include 
#include 
#include 
#include 
#include 
using namespace std;
const int maxn=5e4+5;
//记得要开string的数组,开不了char的二维数组
string str[maxn];
//把行和列分成两个数组,就不会有问题
int h[maxn],l[maxn];//计算每行每列有多少白的
const int inf=0x3f3f3f;
int main()
{
    int t,n,m;
    scanf("%d",&t);
    while(t--)
    {
        memset(h,0,sizeof(h));
        memset(l,0,sizeof(l));
        scanf("%d%d",&n,&m);
        for(int i=0;i>str[i];
        for(int i=0;i

你可能感兴趣的:(codeforces)