日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

leetcode 473. Matchsticks to Square | 473. 火柴拼正方形(递归)

發布時間:2024/2/28 编程问答 43 豆豆
生活随笔 收集整理的這篇文章主要介紹了 leetcode 473. Matchsticks to Square | 473. 火柴拼正方形(递归) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目

https://leetcode.com/problems/matchsticks-to-square/

題解

看了 hint 之后,才有思路。

討論區有個人說得好:

This solution should mention that this problem is an instance of the well-known Bin Packing Problem, which has been proven to be NP-complete, so it is not possible to implement a solution that takes less than exponential time. This would be a very important fact for the candidate to identify, because they otherwise will likely spin their wheels trying to identify a polynomial-time solution.

Once you’ve identified that the problem is NP-complete, you know that you’ll just have to implement a “brute force” solution, and the only task remaining is to look for opportunities to reduce the amount of work you need to do via pruning, memoization, etc.

Exactly. In fact second solution is over-engineering because there isn’t an actual improvement in big o time complexity.

If I was the interviewer, if the candidate identified that it’s a variant of bin-packing, therefore NP-complete, and gave a clean backtracking solution, that would be full marks.

class Solution {public boolean makesquare(int[] arr) {Arrays.sort(arr);int sum = 0;for (int m : arr) {sum += m;}if (sum % 4 != 0) return false;return process(arr, arr.length - 1, 0, 0, 0, 0, sum / 4);}public boolean process(int[] arr, int i, int l1, int l2, int l3, int l4, int target) {if (i < 0) return l1 == target && l2 == target && l3 == target && l4 == target;if (l1 > target || l2 > target || l3 > target || l4 > target) return false;return process(arr, i - 1, l1 + arr[i], l2, l3, l4, target) ||process(arr, i - 1, l1, l2 + arr[i], l3, l4, target) ||process(arr, i - 1, l1, l2, l3 + arr[i], l4, target) ||process(arr, i - 1, l1, l2, l3, l4 + arr[i], target);} }

超強干貨來襲 云風專訪:近40年碼齡,通宵達旦的技術人生

總結

以上是生活随笔為你收集整理的leetcode 473. Matchsticks to Square | 473. 火柴拼正方形(递归)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。