-
Notifications
You must be signed in to change notification settings - Fork 0
/
1423.可获得的最大点数.js
100 lines (98 loc) · 2.45 KB
/
1423.可获得的最大点数.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
* @lc app=leetcode.cn id=1423 lang=javascript
*
* [1423] 可获得的最大点数
*
* https://leetcode-cn.com/problems/maximum-points-you-can-obtain-from-cards/description/
*
* algorithms
* Medium (43.57%)
* Likes: 79
* Dislikes: 0
* Total Accepted: 13.8K
* Total Submissions: 26.6K
* Testcase Example: '[1,2,3,4,5,6,1]\n3'
*
* 几张卡牌 排成一行,每张卡牌都有一个对应的点数。点数由整数数组 cardPoints 给出。
*
* 每次行动,你可以从行的开头或者末尾拿一张卡牌,最终你必须正好拿 k 张卡牌。
*
* 你的点数就是你拿到手中的所有卡牌的点数之和。
*
* 给你一个整数数组 cardPoints 和整数 k,请你返回可以获得的最大点数。
*
*
*
* 示例 1:
*
* 输入:cardPoints = [1,2,3,4,5,6,1], k = 3
* 输出:12
* 解释:第一次行动,不管拿哪张牌,你的点数总是 1 。但是,先拿最右边的卡牌将会最大化你的可获得点数。最优策略是拿右边的三张牌,最终点数为 1 + 6 +
* 5 = 12 。
*
*
* 示例 2:
*
* 输入:cardPoints = [2,2,2], k = 2
* 输出:4
* 解释:无论你拿起哪两张卡牌,可获得的点数总是 4 。
*
*
* 示例 3:
*
* 输入:cardPoints = [9,7,7,9,7,7,9], k = 7
* 输出:55
* 解释:你必须拿起所有卡牌,可以获得的点数为所有卡牌的点数之和。
*
*
* 示例 4:
*
* 输入:cardPoints = [1,1000,1], k = 1
* 输出:1
* 解释:你无法拿到中间那张卡牌,所以可以获得的最大点数为 1 。
*
*
* 示例 5:
*
* 输入:cardPoints = [1,79,80,1,1,1,200,1], k = 3
* 输出:202
*
*
*
*
* 提示:
*
*
* 1 <= cardPoints.length <= 10^5
* 1 <= cardPoints[i] <= 10^4
* 1 <= k <= cardPoints.length
*
*
*/
// @lc code=start
/**
* @param {number[]} cardPoints
* @param {number} k
* @return {number}
*/
var maxScore = function(cardPoints, k) {
// 反向滑动窗口 找窗口内点数最小
const n=cardPoints.length
const l=n-k // l>=0
const total=cardPoints.reduce((p,c)=>p+c,0)
if(l===0) return total
let left=0,right=0,min,sum=0
while(right<n){
sum+=cardPoints[right]
if(right<=l-1){
min=sum
}else if(right>l-1){
sum-=cardPoints[left]
left++
min=Math.min(min,sum)
}
right++
}
return total-min
};
// @lc code=end