作者: 负雪明烛
id: fuxuemingzhu
个人博客: http://fuxuemingzhu.cn/


题目地址:https://leetcode.com/problems/matchsticks-to-square/description/

题目描述

Remember the story of Little Match Girl? By now, you know exactly what matchsticks the little match girl has, please find out a way you can make one square by using up all those matchsticks. You should not break any stick, but you can link them up, and each matchstick must be used exactly one time.

Your input will be several matchsticks the girl has, represented with their stick length. Your output will either be true or false, to represent whether you could make one square using all the matchsticks the little match girl has.

Example 1:

Input: [1,1,2,2,2]
Output: true Explanation: You can form a square with length 2, one side of the square came two sticks with length 1.

Example 2:

Input: [3,3,3,3,4]
Output: false Explanation: You cannot find a way to form a square with all the matchsticks.

Note:

  1. The length sum of the given matchsticks is in the range of 0 to 10^9.
  2. The length of the given matchstick array will not exceed 15.

题目大意

题目很长,讲的是卖火孩的小女柴,把火柴拼在一起能不能得到一个正方形。当然火柴是不能折断的,而且要全部都用上。

解题方法

回溯法

这个题目很长,其实就一句话:能不能把一组数字分成4组,每组的和是相同的。

我们注意到题目给出的数组长度最多只有15个,基本上可以使用O(N!)的时间复杂度去解决。所以我们可以直接使用回溯法。回溯的思路是先设置好4条边,然后把每一个火柴看看能不能放到4条边中的一个去,如果可以的话就继续向后扫描,直到所有的火柴全部用上为止。

同样使用416. Partition Equal Subset Sum的方法,也就是在使用记录四组的和的方式,进行遍历的时候保存各个组的和,如果不能满足就把这个数字再加上,相当于跳过这个数字的方式。最后结束的条件就是所有的数字全部都用完了,因为如果用完了,说明我们把所有的火柴都放到了4条边中的一个,所以得到每组都满足我们条件的结论。

Python代码:

class Solution:
def makesquare(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
if not nums or len(nums) < 4: return False
_sum = sum(nums)
div, mod = divmod(_sum, 4)
if mod != 0 or max(nums) > _sum / 4: return False
nums.sort(reverse = True)
target = [div] * 4
return self.dfs(nums, 0, target) def dfs(self, nums, index, target):
if index == len(nums): return True
num = nums[index]
for i in range(4):
if target[i] >= num:
target[i] -= num
if self.dfs(nums, index + 1, target): return True
target[i] += num
return False

C++代码如下:

class Solution {
public:
bool makesquare(vector<int>& nums) {
if (nums.size() < 4) return false;
int sum = accumulate(nums.begin(), nums.end(), 0);
if (sum % 4 != 0)
return false;
int edge = sum / 4;
vector<int> target(4, edge);
return helper(nums, 0, target);
}
bool helper(vector<int>& nums, int index, vector<int>& target) {
const int N = nums.size();
if (index == N) return true;
int num = nums[index];
for (int i = 0; i < 4; ++i) {
if (target[i] >= num) {
target[i] -= num;
if (helper(nums, index + 1, target))
return true;
target[i] += num;
}
}
return false;
}
};

日期

2018 年 4 月 2 日 —— 要开始准备ACM了
2019 年 2 月 23 日 —— 没时间了

最新文章

  1. [html] 有利于seo优化的div+css命名规范
  2. Ubantu Linux 环境下编译c++程序
  3. cannot load flash device description
  4. 过滤emoji表情
  5. Wordpress 标题设置
  6. Java基础知识强化之IO流笔记42:IO流总结(图解)
  7. GitHub上整理的一些工具,求补充
  8. AngularJs 【使用】 -- ng-repart 排序使用
  9. Python自动化运维之9、模块之sys、os、hashlib、random、time&amp;datetime、logging、subprocess
  10. spring注解理解
  11. 移动App-UI配制篇
  12. Unity3D Layer要点
  13. python re模块findall使用
  14. Leetcode_35_Search Insert Position
  15. FIVE1
  16. Tomcat服务器为java项目配置顶级域名
  17. CURL超时时间设置
  18. libxml2的安装及使用[总结]
  19. mysql 5.5安装手记
  20. 绑定当前对象例子——Tag=&quot;{Binding}&quot;

热门文章

  1. 25-ZigZag Conversion
  2. ysoserial-CommonsBeanutils1的shiro无依赖链改造
  3. 求解线性递推方程第n项的一般方法
  4. LeetCode一维数组的动态和
  5. 27.0 linux VM虚拟机IP问题
  6. Scala(七)【异常处理】
  7. Set、Map、WeakSet 和 WeakMap 的区别
  8. 如何将List集合中相同属性的对象合并
  9. [学习总结]3、Android---Scroller类(左右滑动效果常用的类)
  10. go 代理