-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path473 Matchsticks to Square.py
65 lines (50 loc) · 1.81 KB
/
473 Matchsticks to Square.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/python3
"""
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.
Author: Rajeev Ranjan
"""
class Solution:
def makesquare(self, nums):
"""
need to use up all the stics
greedily fit the largest first - error, consider [5, 4, 2, 2, 2, 2, 3]
need to dfs
:type nums: List[int]
:rtype: bool
"""
if not nums:
return False
square = [0 for _ in range(4)]
l = sum(nums) // 4
if sum(nums) % 4 != 0:
return False
nums.sort(reverse=True)
return self.dfs(nums, 0, l, square)
def dfs(self, nums, i, l, square):
if i >= len(nums):
return True
for j in range(len(square)):
if nums[i] + square[j] <= l:
square[j] += nums[i]
if self.dfs(nums, i + 1, l, square):
return True
square[j] -= nums[i]
return False
if __name__ == "__main__":
assert Solution().makesquare([1,1,2,2,2]) == True
assert Solution().makesquare([3,3,3,3,4]) == False