商品题我用的是回溯,过了37.5% 蚂蚁题也是回溯,全通过了 所以商品那题用回溯是会超时不能过吗,有没有大佬提供一下解题思路😭 蚂蚁代码 class Solution { int result=Integer.MAX_VALUE; public int getMinLen (int[][] points) { boolean[] flag=new boolean[points.length]; getResult(points,flag,0,0,0,0); return result; } ...