如下图所示,3 x 3 的格子中填写了一些整数。
|10* 1|52|
+–****–+
|20|30* 1|
*******–+
| 1| 2| 3|
+–+–+–+
我们沿着图中的星号线剪开,得到两个部分,每个部分的数字和都是60。
本题的要求就是请你编程判定:对给定的m x n 的格子中的整数,是否可以分割为两个部分,使得这两个区域的数字和相等。
如果存在多种解答,请输出包含左上角格子的那个区域包含的格子的最小数目。
如果无法分割,则输出 0。
程序先读入两个整数 m n 用空格分割 (m,n<10)。
表示表格的宽度和高度。
接下来是n行,每行m个正整数,用空格分开。每个整数不大于10000。
10 1 52
20 30 1
1 2 3
1 1 1 1
1 30 80 2
1 1 1 100
#include <iostream>
#include <queue>
#include <iomanip>
#include <math.h>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include<cstring>
#include<ctype.h>
#include<math.h>
using namespace std;
int dx[4]={0,1,0,-1};
int dy[4]={1,0,-1,0};//每次走一步的增量
bool is_use[20][20];
int vx[20][20];
int M,N,SUM;
bool judge(int x,int y,int num)
{
if(x<0||y<0||x>N–1||y>M–1)
{
return 1;
}
if(is_use[x][y])
return 1;
if(num+vx[x][y] > SUM)
return 1;
return 0;
}
int dfs(int x,int y,int num)
{
if(num == SUM/2)
{
return 1;
}
for(int i = 0 ; i < 4;i++)// 依次走4步进行尝试
{
int new_x = x + dx[i];
int new_y = y + dy[i];
if(judge(new_x, new_y, num))
continue;
is_use[new_x][new_y] = true;
int res = dfs(new_x, new_y, num+vx[new_x][new_y]);
if(res)
return res + 1;
is_use[new_x][new_y] = false;
}
return 0;
}
int main(int argc, const char * argv[]) {
cin>>M;
cin>>N;
SUM = 0 ;
for(int i = 0 ; i < N;i++)
for(int j = 0 ; j < M;j++)
{
cin>>vx[i][j];
SUM+=vx[i][j];
}
if(SUM!=2*(int)SUM/2)
{
cout<<0;
return 0;
}
for(int i = 0 ; i < N;i++)
for(int j = 0 ; j < M;j++)
{
is_use[i][j] = false;
}
is_use[0][0] = true;
cout<<dfs(0,0,vx[0][0]);
}