LCP 39.无人机方阵

题目来源:

        leetcode题目,网址:110. 平衡二叉树 - 力扣(LeetCode)

解题思路:

        统计变换前后各颜色计数之差的绝对值之和的一半即可。

解题代码:

class Solution {
    public int minimumSwitchingTimes(int[][] source, int[][] target) {
        int res=0;
        int[] count=new int[10001];
        for(int i=0;i0){
                res+=count[i];
            }
        }
        return res;
    }
}
 
  

总结:

        无官方题解。

        刚开始以为只能做行列变换......


你可能感兴趣的:(#,Java,LeetCode,Java)