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之路的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 472. 连接词(字典树+回溯) / 1995. 统计特殊四元组(标记这个题) / 846. 一手顺子