解题思路:
注意事项:
参考代码:
package dotcpp.research;
import java.util.Scanner;
public class 剪格子 {
static int[]xx={0,0,-1,1};
static int[]yy={1,-1,0,0};
static int total=Integer.MAX_VALUE;
static int mapsum=0;
static int n;
static int m;
static boolean[][]vis;
static int [][]map;
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
m=sc.nextInt();
n=sc.nextInt();
map=new int[n+2][m+2];
vis=new boolean[n+2][m+2];
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
map[i][j]=sc.nextInt();
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
mapsum=mapsum+map[i][j];
if(mapsum%2==0) {
vis[1][1]=true;
dfs(1, 1, map[1][1],1);
}
if(total==Integer.MAX_VALUE)
total=0;
System.out.println(total);
}
public static void dfs(int x,int y,int sum,int gezishu){
if(sum==mapsum/2)
{
if(total>gezishu)
total=gezishu;
}
for(int k=0;k<=3;k++)
{
int dx=x+xx[k];
int dy=y+yy[k];
if(dx>=1&&dx<=n&&dy<=m&&dy>=1&&!vis[dx][dy]){
vis[dx][dy]=true;
dfs(dx,dy,sum+map[dx][dy],gezishu+1);
vis[dx][dy]=false;
}
}
}
}
0.0分
0 人评分
母牛的故事 (C语言代码)浏览:1063 |
宏定义(C语言代码)浏览:671 |
C二级辅导-求偶数和 (C++代码)浏览:812 |
蛇行矩阵 (C++代码)(预生成结果以节省每次生成的时间)浏览:890 |
震宇大神的杀毒软件 (C语言代码)浏览:1348 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:481 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:588 |
用筛法求之N内的素数。 (C语言代码)浏览:890 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:573 |
简单的a+b (C语言代码)浏览:574 |