LeetCode Algorithm 1534. 统计好三元组
Posted _Alex_007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode Algorithm 1534. 统计好三元组相关的知识,希望对你有一定的参考价值。
Ideas
今天事情有点多,直接暴力枚举了。
Code
C++
class Solution
public:
int countGoodTriplets(vector<int>& arr, int a, int b, int c)
int cnt = 0;
for (int i = 0; i < arr.size(); ++i)
for (int j = i + 1; j < arr.size(); ++j)
if (abs(arr[i] - arr[j]) <= a)
for (int k = j + 1; k < arr.size(); ++k)
if (abs(arr[j] - arr[k]) <= b && abs(arr[i] - arr[k]) <= c)
++cnt;
return cnt;
;
以上是关于LeetCode Algorithm 1534. 统计好三元组的主要内容,如果未能解决你的问题,请参考以下文章