WebService之CXF注解之三(Service接口实现类)

2020-12-13 01:45

阅读:627

标签:style   blog   class   code   ext   color   

Paint the Grid Reloaded

Time Limit: 2 Seconds      Memory Limit: 65536 KB

Leo has a grid with N rows and M columns. All cells are painted with either black or white initially.

Two cells A and B are called connected if they share an edge and they are in the same color, or there exists a cell C connected to both A and B.

Leo wants to paint the grid with the same color. He can make it done in multiple steps. At each step Leo can choose a cell and flip the color (from black to white or from white to black) of all cells connected to it. Leo wants to know the minimum number of steps he needs to make all cells in the same color.

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

The first line contains two integers N and M (1 N, M N lines follow. Each line contains a string with N characters. Each character is either ‘X‘ (black) or ‘O‘ (white) indicates the initial color of the cells.

Output

For each test case, output the minimum steps needed to make all cells in the same color.

Sample Input

2
2 2
OX
OX
3 3
XOX
OXO
XOX

Sample Output

1
2

Hint

For the second sample, one optimal solution is:

Step 1. flip (2, 2)

XOX
OOO
XOX

Step 2. flip (1, 2)

XXX
XXX
XXX


题意:

给你一个染色的 N×M 的格子,你每次可以选择一个连通块,将其颜色取反。问最后将整个格子变为同色的最小步数。


思路:

其实就是一个最短路,将连通块缩点然后不同种的连通块之间连边,那么将整个格子变为同色的最小步数就等于一个点到地图上最远点的距离了。


代码:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#pragma comment (linker,"/STACK:1024000000,1024000000")
#define maxn 45
#define MAXN 2700005
#define OO (1n||ym) return false ;
    return true ;
}
void dfs(int x,int y)
{
    num[x][y]=lev;
    int nx,ny,i;
    for(i=0;i Q;
int bfs(int now)
{
    memset(VVV,0,sizeof(VVV));
    t.dis=0;
    t.num=now;
    VVV[now]=1;
    while(!Q.empty()) Q.pop();
    Q.push(t);
    int maxs=0;
    while(!Q.empty())
    {
        t=Q.front();Q.pop();
        if(t.dis>ans) return INF;
        for(int i=p[t.num];i!=0;i=edge[i].next)
        {
            int to=edge[i].v;
            if(!VVV[to])
            {
                VVV[to]=1;
                f.num=to;
                f.dis=t.dis+1;
                maxs=max(maxs,f.dis);
                Q.push(f);
            }
        }
    }
    return maxs;
}
int main()
{
    int i,j,t,u,v,w;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d",&n,&m);
        for(i=1;i


WebService之CXF注解之三(Service接口实现类),搜素材,soscw.com

WebService之CXF注解之三(Service接口实现类)

标签:style   blog   class   code   ext   color   

原文地址:http://blog.csdn.net/you23hai45/article/details/25083159


评论


亲,登录后才可以留言!