948 Bag of Tokens

178 篇文章 0 订阅
160 篇文章 0 订阅

1 题目

You have an initial power P, an initial score of 0 points, and a bag of tokens.

Each token can be used at most once, has a value token[i], and has potentially two ways to use it.

  • If we have at least token[i] power, we may play the token face up, losing token[i] power, and gaining 1point.
  • If we have at least 1 point, we may play the token face down, gaining token[i] power, and losing 1 point.

Return the largest number of points we can have after playing any number of tokens.

Example 1:

Input: tokens = [100], P = 50
Output: 0

 Example 2:

Input: tokens = [100,200], P = 150
Output: 1

Example 3:

Input: tokens = [100,200,300,400], P = 200
Output: 2

Note:

  1. tokens.length <= 1000
  2. 0 <= tokens[i] < 10000
  3. 0 <= P < 10000

2 尝试解

2.1 分析

一个整型数组,代表若干筹码,玩家有一个初始的能量 。对于每个筹码,有两种选择:

消耗筹码代表的能量,分数+1;获得筹码代表的能量,分数-1。问分数的最大值。

首先既然每次对筹码操作得到或减去的分数相同,那么要消耗能量,肯定要从能量最小的开始;要获得能量,肯定要从能量最大的开始。所以先将数组排序,然后左端开始,重复获取最小的筹码,直到能量不足,或者左端超过右端,筹码用尽,游戏结束。如果未结束,且此时分数为零,说明初始能量比最小的筹码还小,游戏结束;如果左端右端重合,游戏结束,因为即使获取了这个筹码的能量,也没有别的筹码能继续游戏,反而减少了分数;否则,获取最大筹码的能量,重复上述操作。

2.2 代码

class Solution {
public:
    int bagOfTokensScore(vector<int>& tokens, int P) {
        int left = 0, right = tokens.size()-1, result = 0;
        sort(tokens.begin(),tokens.end());
        while(left <= right){
            while(left <= right &&tokens[left]<=P){
                result ++;
                P -= tokens[left];
                left++;
            }
            if(left < right && result > 0){
                P += tokens[right];
                right--;
                result --;
            }
            else break;
        }
        return result;
    }
};

3 标准解

class Solution {
public:
    int bagOfTokensScore(vector<int>& tokens, int P) {
        sort(tokens.begin(), tokens.end());
        int res = 0, points = 0, i = 0, j = tokens.size() - 1;
        while (i <= j) {
            if (P >= tokens[i]) {
                P -= tokens[i++];
                res = max(res, ++points);
            } else if (points > 0) {
                points--;
                P += tokens[j--];
            } else {
                break;
            }
        }
        return res;
    }
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值