forked from Sunchit/Coding-Decoded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatchSticksToSquare.java
43 lines (32 loc) · 1.03 KB
/
MatchSticksToSquare.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
//https://leetcode.com/problems/matchsticks-to-square/
class Solution {
// TC : O(4^N)
public boolean makesquare(int[] nums) {
if (nums.length < 4) return false;
int perimeter = 0;
for (int el : nums) {
perimeter += el;
}
if (perimeter % 4 != 0) return false;
Arrays.sort(nums);
int side = perimeter / 4;
int[] sides = new int[] {side, side, side, side};
return makesquareHelper(nums, 0, sides);
}
private boolean makesquareHelper(int[] nums, int i, int[] sides) {
if(i == nums.length) {
if(sides[0] == 0 && sides[1] == 0 && sides[2] == 0 && sides[3] == 0){
return true;
} else{
return false;
}
}
for (int j = 0; j < 4; j++) {
if (nums[i] > sides[j]) continue;
sides[j] -= nums[i];
if (makesquareHelper(nums, i + 1, sides)) return true;
sides[j] += nums[i];
}
return false;
}
}