Every day a Leetcode 题目来源:1423. 可获得的最大点数 解法1:前缀和 + 后缀和 基于贪心的思想,要使得获得的点数最大,每次拿卡牌都应该选点数尽量高的卡牌。 但是拿卡牌有限制,每次行动,只可以从行的开头或者末尾拿一张卡牌,最终必须正好拿 k 张卡牌。 设数组 cardPoints 的长度为 n。分别求出它的前缀和数组 prevSum 和后缀和数组 suffi
文章目录 一、题目二、题解 一、题目 There are several cards arranged in a row, and each card has an associated number of points. The points are given in the integer array cardPoints. In one step, you can ta