返回介绍

solution / 1500-1599 / 1561.Maximum Number of Coins You Can Get / README_EN

发布于 2024-06-17 01:03:18 字数 4225 浏览 0 评论 0 收藏 0

1561. Maximum Number of Coins You Can Get

中文文档

Description

There are 3n piles of coins of varying size, you and your friends will take piles of coins as follows:

  • In each step, you will choose any 3 piles of coins (not necessarily consecutive).
  • Of your choice, Alice will pick the pile with the maximum number of coins.
  • You will pick the next pile with the maximum number of coins.
  • Your friend Bob will pick the last pile.
  • Repeat until there are no more piles of coins.

Given an array of integers piles where piles[i] is the number of coins in the ith pile.

Return the maximum number of coins that you can have.

 

Example 1:

Input: piles = [2,4,1,2,7,8]
Output: 9
Explanation: Choose the triplet (2, 7, 8), Alice Pick the pile with 8 coins, you the pile with 7 coins and Bob the last one.
Choose the triplet (1, 2, 4), Alice Pick the pile with 4 coins, you the pile with 2 coins and Bob the last one.
The maximum number of coins which you can have are: 7 + 2 = 9.
On the other hand if we choose this arrangement (1, 2, 8), (2, 4, 7) you only get 2 + 4 = 6 coins which is not optimal.

Example 2:

Input: piles = [2,4,5]
Output: 4

Example 3:

Input: piles = [9,8,7,6,5,1,2,3,4]
Output: 18

 

Constraints:

  • 3 <= piles.length <= 105
  • piles.length % 3 == 0
  • 1 <= piles[i] <= 104

Solutions

Solution 1

class Solution:
  def maxCoins(self, piles: List[int]) -> int:
    piles.sort()
    return sum(piles[-2 : len(piles) // 3 - 1 : -2])
class Solution {

  public int maxCoins(int[] piles) {
    Arrays.sort(piles);
    int ans = 0;
    for (int i = piles.length - 2; i >= piles.length / 3; i -= 2) {
      ans += piles[i];
    }
    return ans;
  }
}
class Solution {
public:
  int maxCoins(vector<int>& piles) {
    sort(piles.begin(), piles.end());
    int ans = 0;
    for (int i = piles.size() - 2; i >= (int) piles.size() / 3; i -= 2) ans += piles[i];
    return ans;
  }
};
func maxCoins(piles []int) int {
  sort.Ints(piles)
  ans, n := 0, len(piles)
  for i := n - 2; i >= n/3; i -= 2 {
    ans += piles[i]
  }
  return ans
}
function maxCoins(piles: number[]): number {
  piles.sort((a, b) => a - b);
  const n = piles.length;
  let ans = 0;
  for (let i = 1; i <= Math.floor(n / 3); i++) {
    ans += piles[n - 2 * i];
  }
  return ans;
}
impl Solution {
  pub fn max_coins(mut piles: Vec<i32>) -> i32 {
    piles.sort();
    let n = piles.len();
    let mut ans = 0;
    for i in 1..=n / 3 {
      ans += piles[n - 2 * i];
    }
    ans
  }
}
int cmp(const void* a, const void* b) {
  return *(int*) a - *(int*) b;
}

int maxCoins(int* piles, int pilesSize) {
  qsort(piles, pilesSize, sizeof(int), cmp);
  int ans = 0;
  for (int i = 1; i <= pilesSize / 3; i++) {
    ans += piles[pilesSize - 2 * i];
  };
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文