LeetCode Hard Number of Squareful Arrays

Given an array A of non-negative integers, the array is squareful if for every pair of adjacent elements, their sum is a perfect square.

Return the number of permutations of A that are squareful. Two permutations A1 and A2 differ if and only if there is some index i such that A1[i] != A2[i].

Example 1:

Input: [1,17,8]
Output: 2
Explanation: 
[1,8,17] and [17,8,1] are the valid permutations.

Example 2:

Input: [2,2,2]
Output: 1

Note:

  1. 1 <= A.length <= 12
  2. 0 <= A[i] <= 1e9

Solution

DFS + 剪枝去重

class Solution {
public:
    bool isSquare(int a, int b) {
        int s = sqrt(a + b);
        return (a + b == s * s);
    }

    void dfs(const vector<int>& A, vector<int>& used, vector<int>& cur, int& num) {
        if (cur.size() == A.size()) {
            num++;
            return;
        }
        for (int i = 0; i < A.size(); i++) {
            if (used[i]) continue;
            if (i > 0 && used[i - 1] && A[i] == A[i - 1]) continue;
            if (!cur.empty() && !isSquare(A[i], cur.back())) continue;
            cur.push_back(A[i]);
            used[i] = 1;
            dfs(A, used, cur, num);
            used[i] = 0;
            cur.pop_back();
        }
    }

    int numSquarefulPerms(vector<int>& A) {
        sort(begin(A), end(A));
        vector<int> used(A.size());
        vector<int> cur;
        int num = 0;
        dfs(A, used, cur, num);
        return num;
    }
};

注意,那三个continue的顺序,剪枝的优先级不能弄混,否则效率差距蛮大。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值