leetcode473. 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:
0
to 10^9
. 15
. 현재 하나의 정수 배열 은 각종 길이 의 성냥 한 무 더 기 를 대표 한다.이 성냥 들 을 맞 추 면 정사각형 으로 맞 출 수 있 는 지 물 었 다.성냥 한 개비 에 한 번 만 사용 할 수 있 도록 요구 하 다.
아이디어 와 코드
여기 서 사용 하 는 것 은 깊이 가 먼저 옮 겨 다 니 는 사고 이다. 즉, 나무 막대 기 를 각각 가장자리 에 놓 고 최종 적 으로 정사각형 을 구성 할 수 있 는 지 를 보 는 것 이다.간단 한 최적화 방식 은 중복 길이 의 성냥 분 배 를 줄 이 는 것 이다.
public boolean makesquare(int[] nums) {
if (nums == null || nums.length == 0){
return false;
}
int sum = 0;
int max = 0;
for (int num : nums) {
sum += num;
max = Math.max(num, max);
}
if (sum % 4 != 0) {
return false;
}
int sideLength = sum / 4;
if (max > sideLength) {
return false;
}
return makesquare(nums, 0, sideLength, sideLength, sideLength, sideLength);
}
public boolean makesquare(int[] nums, int index, int firstSide, int secondSide, int thirdSide, int fourthSide) {
if (index >= nums.length) return true;
boolean canMake = false;
if (firstSide >= nums[index]) {
firstSide -= nums[index];
canMake = makesquare(nums, index+1, firstSide, secondSide, thirdSide, fourthSide);
firstSide += nums[index];
}
if (!canMake && secondSide != firstSide && secondSide >= nums[index]) {
secondSide -= nums[index];
canMake = makesquare(nums, index+1, firstSide, secondSide, thirdSide, fourthSide);
secondSide += nums[index];
}
if (!canMake && thirdSide != secondSide && thirdSide >= nums[index]) {
thirdSide -= nums[index];
canMake = makesquare(nums, index+1, firstSide, secondSide, thirdSide, fourthSide);
thirdSide += nums[index];
}
if (!canMake && fourthSide != thirdSide && fourthSide >= nums[index]) {
fourthSide -= nums[index];
canMake = makesquare(nums, index+1, firstSide, secondSide, thirdSide, fourthSide);
fourthSide += nums[index];
}
return canMake;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
나무깊이 우선 탐색(DFS) 깊이 우선 검색(DFS)은 트리 또는 그래프 데이터 구조를 탐색하거나 검색하기 위한 알고리즘입니다. 하나는 루트에서 시작하여(그래프의 경우 임의의 노드를 루트로 선택) 역추적하기 전에 각 분...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.