leetcode473. Matchsticks to Square

3205 단어 dfs자바leetcode
제목 요구
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 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;
    
        }
    

    좋은 웹페이지 즐겨찾기