forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_473.java
85 lines (75 loc) · 2.7 KB
/
_473.java
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.fishercoder.solutions;
import java.util.Arrays;
/**
* 473. Matchsticks to Square
*
* 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:
The length sum of the given matchsticks is in the range of 0 to 10^9.
The length of the given matchstick array will not exceed 15.
*/
public class _473 {
public static class Solution1 {
/**
* Partially inspired by: https://discuss.leetcode.com/topic/72107/java-dfs-solution-with-explanation/2
* One hidden requirement: you'll have to use up all of the given matchsticks, nothing could be left behind.
*/
public boolean makesquare(int[] nums) {
if (nums == null || nums.length < 4) {
return false;
}
Arrays.sort(nums);
reverse(nums);
int sum = 0;
for (int i : nums) {
sum += i;
}
if (sum % 4 != 0) {
return false;
}
return dfs(nums, new int[4], 0, sum / 4);
}
private boolean dfs(int[] nums, int[] sums, int index, int target) {
if (index == nums.length) {
if (sums[0] == target && sums[1] == target && sums[2] == target) {
return true;
}
return false;
}
for (int i = 0; i < 4; i++) {
if (sums[i] + nums[index] > target) {
continue;
}
sums[i] += nums[index];
if (dfs(nums, sums, index + 1, target)) {
return true;
}
sums[i] -= nums[index];
}
return false;
}
private void reverse(int[] nums) {
int left = 0;
int right = nums.length - 1;
while (left < right) {
int tmp = nums[left];
nums[left] = nums[right];
nums[right] = tmp;
left++;
right--;
}
}
}
}