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

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

LeetCode 2593. Find Score of an Array After Marking All Elements

2023-04-11 09:42 作者:您是打尖兒還是住店呢  | 我要投稿

You are given an array?nums?consisting of positive integers.

Starting with?score = 0, apply the following algorithm:

  • Choose the smallest integer of the array that is not marked. If there is a tie, choose the one with the smallest index.

  • Add the value of the chosen integer to?score.

  • Mark?the chosen element and its two adjacent elements if they exist.

  • Repeat until all the array elements are marked.

Return?the score you get after applying the above algorithm.

?

Example 1:

Input: nums = [2,1,3,4,5,2]

Output: 7

Explanation:?

We mark the elements as follows:?

- 1 is the smallest unmarked element, so we mark it and its two adjacent elements: [2,1,3,4,5,2].?

- 2 is the smallest unmarked element, so we mark it and its left adjacent element: [2,1,3,4,5,2].?

- 4 is the only remaining unmarked element, so we mark it: [2,1,3,4,5,2].?

Our score is 1 + 2 + 4 = 7.

Example 2:

Input: nums = [2,3,5,1,3,2]

Output: 5

Explanation: We mark the elements as follows:?

- 1 is the smallest unmarked element, so we mark it and its two adjacent elements: [2,3,5,1,3,2].?

- 2 is the smallest unmarked element, since there are two of them, we choose the left-most one, so we mark the one at index 0 and its right adjacent element: [2,3,5,1,3,2].?

- 2 is the only remaining unmarked element, so we mark it: [2,3,5,1,3,2].

Our score is 1 + 2 + 2 = 5.

?

Constraints:

  • 1 <= nums.length <= 105

  • 1 <= nums[i] <= 106

這里面最主要的是如何定義優(yōu)先隊(duì)列的排序規(guī)則,

這個規(guī)則定義好之后,用一個數(shù)組記錄被訪問過的元素即可。

屬于新知識,學(xué)習(xí)到了。


Runtime:?267 ms, faster than?40.49%?of?Java?online submissions for?Find Score of an Array After Marking All Elements.

Memory Usage:?60.6 MB, less than?25.56%?of?Java?online submissions for?Find Score of an Array After Marking All Elements.



LeetCode 2593. Find Score of an Array After Marking All Elements的評論 (共 條)

分享到微博請遵守國家法律
仪陇县| 石家庄市| 洛阳市| 廉江市| 蒙阴县| 长岭县| 云霄县| 潞城市| 南和县| 广河县| 肥城市| 宜春市| 柳江县| 衡南县| 增城市| 科技| 木兰县| 积石山| 丰台区| 扬州市| 孟津县| 宜春市| 得荣县| 承德县| 铜陵市| 清远市| 阳东县| 彭州市| 保德县| 阜城县| 东乡| 天门市| 麦盖提县| 泸定县| 五原县| 育儿| 肇州县| 兴国县| 西青区| 扶风县| 凤凰县|