贪心-Bag of Tokens
Posted hyserendipity
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了贪心-Bag of Tokens相关的知识,希望对你有一定的参考价值。
2020-01-20 22:32:28
问题描述:
问题求解:
双指针 + 贪心。
public int bagOfTokensScore(int[] tokens, int P) { Arrays.sort(tokens); int res = 0; int curr = 0; int l = 0; int r = tokens.length - 1; while (l <= r) { if (P >= tokens[l]) { curr += 1; P -= tokens[l]; l++; res = Math.max(res, curr); } else if (curr > 0) { curr -= 1; P += tokens[r]; r--; } else break; } return res; }
以上是关于贪心-Bag of Tokens的主要内容,如果未能解决你的问题,请参考以下文章
kaggle实战之 bag of words meet bag of poopcorn
训练技巧详解含有部分代码Bag of Tricks for Image Classification with Convolutional Neural Networks