最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網 會員登陸 & 注冊

LeetCode 2367. Number of Arithmetic Triplets

2023-04-19 15:16 作者:您是打尖兒還是住店呢  | 我要投稿

You are given a?0-indexed,?strictly increasing?integer array?nums?and a positive integer?diff. A triplet?(i, j, k)?is an?arithmetic triplet?if the following conditions are met:

  • i < j < k,

  • nums[j] - nums[i] == diff, and

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

Return?the number of unique?arithmetic triplets.

?

Example 1:

Input:?

nums = [0,1,4,6,7,10],?

diff = 3

Output:?2

Explanation:(1, 2, 4) is an arithmetic triplet because both 7 - 4 == 3 and 4 - 1 == 3.?

(2, 4, 5) is an arithmetic triplet because both 10 - 7 == 3 and 7 - 4 == 3.

Example 2:

Input:?

nums = [4,5,6,7,8,9],?

diff = 2

Output: 2

Explanation:(0, 2, 4) is an arithmetic triplet because both 8 - 6 == 2 and 6 - 4 == 2.?

(1, 3, 5) is an arithmetic triplet because both 9 - 7 == 2 and 7 - 5 == 2.


就是計算每個i開始能夠形成多少等差數列,如果n>3,那么就可以形成n-2種不同的組合。

剩下就是計算多少個了,我用了一個boolean數組。去判斷是否已經訪問過了。



?

Constraints:

  • 3 <= nums.length <= 200

  • 0 <= nums[i] <= 200

  • 1 <= diff <= 50

  • nums?is?strictly?increasing.


Runtime:?3 ms, faster than?42.99%?of?Java?online submissions for?Number of Arithmetic Triplets.

Memory Usage:?40.6 MB, less than?52.22%?of?Java?online submissions for?Number of Arithmetic Triplets.


LeetCode 2367. Number of Arithmetic Triplets的評論 (共 條)

分享到微博請遵守國家法律
盘锦市| 永昌县| 安阳县| 堆龙德庆县| 左云县| 兴安县| 洪泽县| 太原市| 隆回县| 青铜峡市| 象州县| 务川| 正镶白旗| 博兴县| 扶沟县| 龙陵县| 囊谦县| 临漳县| 陵水| 大连市| 建德市| 遂川县| 宿迁市| 明光市| 丽水市| 铜山县| 扎兰屯市| 沁源县| 长岭县| 呼伦贝尔市| 道真| 钟山县| 岳阳县| 柯坪县| 塔城市| 西藏| 武乡县| 海城市| 贵德县| 平南县| 绥滨县|