LeetCode 1995 统计特殊四元组[枚举] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 1995 统计特殊四元组[枚举] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。



解题思路:
给定的数组不能打乱(与下标顺序有关),给定的长度不超过50,不枚举这道题就可惜了,直接四重for循环搞定,代码如下:

class Solution 
public:
    int countQuadruplets(vector<int>& nums) 
        int len = nums.size();
        if(len < 4) 
            return 0;
        
        int ans = 0;
        for(int i = 0; i < len - 3; i ++) 
            for(int j = i + 1; j < len - 2; j ++) 
                for(int k = j + 1; k < len - 1; k ++) 
                    for(int l = k + 1; l < len; l ++) 
                        if(nums[i] + nums[j] + nums[k] == nums[l]) 
                            ans ++;
                        
                    
                
            
        
        return ans;
    
;

以上是关于LeetCode 1995 统计特殊四元组[枚举] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

Python|Leetcode《1995》|统计特殊四元组

LeetCode 472. 连接词(字典树+回溯) / 1995. 统计特殊四元组(标记这个题) / 846. 一手顺子

《LeetCode之每日一题》:250.统计特殊四元组

Leetcode刷题100天—5863. 统计特殊四元组( 暴力)—day29

luogu2714 四元组统计 莫比乌斯反演 组合数

leetcode#18. 4Sum