当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

2905:Blackjack

题目描述
In the game of blackjack you play against the dealer. Blackjack is played with a regular deck of playing cards containing the cards 2, 3, 4, 5, 6, 7, 8, 9, 10,jack, queen, king and ace of various suits. (However the suits do not infiuence the game in any way.) The cards 2 through 10 have value 2 through 10. The jack, queen, and king cards have value 10. Each individual ace can count as either 1 or 11. We define the low value of a player as the lowest possible sum of the values of all the cards of a player, thus counting all aces as 1. The high value of a hand is the highest possible sum of the values that is still below 22, counting aces as 1 or 11 accordingly.

In this problem a basic blackjack variant is considered; there is no splitting, doubling, insurance or "blackjack".

The goal of the game is to maximize your (expected) profit or mimimize your (even more expected) losses. One hand of the game is played as follows:

You place a bet of x euros;

You get one card, then the dealer gets one card;

You get a second card, and finally the dealer gets a second card;

As long as your low value is below 22, you have two options:

"Hit"- take one extra card from the deck;

"Stand"- take no more cards.

If your low value is above 21, you lose bet and the hand ends immediately.

Now the dealer will play his cards;

As long as the high value of the dealer is below 17, the dealer takes an extra card from the deck;

If the low value of the cards of the dealer is above 21, you receive 2x euros, making a profitof x euros;

If the high value of the dealer is greater than than your high value, you lose the bet;

If the high value of the dealer equals your high value, the bet is returned to you;

If the high value of the dealer is less than than your high value, you receive 2x euros, making a profit of x euros;

At the end of the hand, all used cards are placed on a "discard pile" and will not return into play.

If at any time there are no cards left in the deck and the dealer has to get another card or you choose to get another card then the current hand is disregarded and the bet is returned to you.

In this problem, the sequence of cards left in the deck is known to you. You have to write a program to help yourself play optimally (ie. maximize profit).
输入解释
The first line of input consists of the integer number n, the number of test cases;

Then, for each test case:

One line with three integers 0 <=c<=10,000 and 0 <= p <= q<=100: the number of cards left in the deck, the minimum bet and the maximum bet respectively;

[c/60] lines with a total of c characters ('2'-'9', 'T', 'J', 'Q', 'K', 'A'), representing the sequence of cards in the deck. The first character on the first line represents the first card that will come off the deck. Only the last line may contain less than 60 characters.
输出解释
For each test case, the output contains one line with one number: the highest possible prot.
输入样例
1
4 1 15
TTA8
输出样例
15
来自杭电HDUOJ的附加信息
Recommend lcy

该题目是Virtual Judge题目,来自 杭电HDUOJ

题目来源 BAPC 2008

源链接: HDU-2905

最后修改于 2020-10-25T22:58:00+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 32768/32768K(Java/Others)