Leetcode18-算术三元组的数目(2367)

1、题目

给你一个下标从 0 开始、严格递增 的整数数组 nums 和一个正整数 diff 。如果满足下述全部条件,则三元组 (i, j, k) 就是一个 算术三元组 :

i < j < k ,

nums[j] - nums[i] == diff 且

nums[k] - nums[j] == diff

返回不同 算术三元组 的数目。

示例 1:

输入:nums = [0,1,4,6,7,10], diff = 3

输出:2

解释:

(1, 2, 4) 是算术三元组:7 - 4 == 3 且 4 - 1 == 3 。

(2, 4, 5) 是算术三元组:10 - 7 == 3 且 7 - 4 == 3 。

示例 2:

输入:nums = [4,5,6,7,8,9], diff = 2

输出:2

解释:

(0, 2, 4) 是算术三元组:8 - 6 == 2 且 6 - 4 == 2 。

(1, 3, 5) 是算术三元组:9 - 7 == 2 且 7 - 5 == 2 。

提示:

3 <= nums.length <= 200

0 <= nums[i] <= 200

1 <= diff <= 50

nums 严格 递增。

2、解

对nums进行遍历,每个三元组即为{num[i]. nums[i] + diff, nums[i] + 2*diff}

寻找其是否存在每个元素对应的三元组中的后两个元素, 如果存在结果+1。

cpp 复制代码
    int arithmeticTriplets(vector<int> &nums, int diff)
    {
        int result = 0;
        for(int i = 0; i < nums.size(); i++){
            vector<int>::iterator mid = find((nums.begin() + i), nums.end(), nums[i] + diff);
            vector<int>::iterator last = find((nums.begin() + i + 1), nums.end(), nums[i] + 2*diff);
            if(mid != nums.end() && last != nums.end()){
                result++;
            }
        }
        return result;
    }

也可以先将nums通过哈希集合存储后进行查找

cpp 复制代码
    int arithmeticTriplets(vector<int>& nums, int diff) {
        unordered_set<int> hashSet;
        for (int x : nums) {
            hashSet.emplace(x);
        }
        int ans = 0;
        for (int x : nums) {
            if (hashSet.count(x + diff) && hashSet.count(x + 2 * diff)) {
                ans++;
            }
        }
        return ans;
    }
相关推荐
虾..8 小时前
Linux 简单日志程序
linux·运维·算法
Trent19858 小时前
影楼精修-眼镜祛反光算法详解
图像处理·人工智能·算法·计算机视觉·aigc
蓝色汪洋8 小时前
经典修路问题
开发语言·c++·算法
csuzhucong8 小时前
122魔方、123魔方
算法
Salt_07288 小时前
DAY 40 早停策略和模型权重的保存
人工智能·python·算法·机器学习
卜锦元8 小时前
Golang后端性能优化手册(第三章:代码层面性能优化)
开发语言·数据结构·后端·算法·性能优化·golang
Binky6788 小时前
力扣--回溯篇(2)
算法·leetcode·职场和发展
DARLING Zero two♡9 小时前
接入 AI Ping 限免接口,让 GLM-4.7 与 MiniMax-M2.1 成为你的免费 C++ 审计专家
开发语言·c++·人工智能
程序喵大人9 小时前
constexpr
开发语言·c++·constexpr
Larry_Yanan9 小时前
Qt多进程(五)QUdpSocket
开发语言·c++·qt·学习·ui