解题思路:
深度递归
注意事项:
如果完成了75%并出现运行错误,可能是因为数组越界
参考代码:
m, n = map(int, input().strip().split())
figure = []#存储输入的数组
temp = [[0] * m for i in range(n)]#标记每个位置的数是否被访问过
ans = []#存储成功分割后每个组合中含有的数字个数
while len(figure) < n:
try:
arr = list(map(int,input().strip().split()))
figure.append(arr)
except:
break
allnum = 0
for i in range(n):
allnum += sum(figure[i])
def dfs(a, x, y):
global figure
global temp
global allnum
global ans
temp[x][y] = 1
if a == allnum:
b = 0
for i in range(len(figure)):
b += sum(temp[i])
ans.append(b)
return
for k, j in [x - 1, y], [x + 1, y], [x, y - 1], [x, y + 1]:
if 0<=k<len(temp) and 0<=j<len(temp[0]) and not temp[k][j] and a + figure[k][j] <= allnum:#可能会出现数组越界的地方,注意分别对应数组的行数和列数是多少
dfs(a + figure[k][j], k, j)
temp[k][j] = 0
return
if allnum % 2:
print(0)
else:
allnum //= 2
dfs(figure[0][0], 0, 0)
if ans:#虽然所有的数字可以被分为和相同的两部分,但不一定可以形成通路,即无法成功连接
print(min(ans))
else:
print(0)
0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复