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

建议使用的浏览器:

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

2784:Alea iacta est

题目描述
Isaac B. Manfred always dreamed about being a terribly rich man. When he was a child, he played with banknotes instead of toys. After finishing high school, he quickly became a senior broker in one famous bank. His career rose rapidly and also did his wealth. Unfortunately, the bank crisis changed his life significantly. The broker suddenly became broke.

To gain his money back, I.B.M. spent a lot of time in casinos, trying to earn some money there. Most people who ever tried to get rich in casinos are actually very poor today. But this does not include I.B.M. He is a very clever guy and instead of blindly betting his money, he carefully studies various games and computes the probabilities of losing or winning. First, he tried his luck with Roulette and Blackjack, but found out that the odds of winning a fortune are low.

Recently, I.B.M. started to study dice games. He found several of them similar to a trademarked game called Yahtzee! The rules sometimes vary but basic principles are the same. To give you an idea, we will describe a simplified version of such rules.

The game consists of rounds. In each round, a player rolls five dice. After the first roll, it is possible to keep some of the dice and re-roll the rest of them. Any number of dice can be rerolled (including none or all of them). If the re-rolled dice still do not fit the player's intentions, it is possible to re-roll some of them again, for the third and final time. After at most two such re-rolls, the player must assign the result to one of possible combinations and the round is scored according to that combination.

The following table shows the list of combinations, conditions that must be satisfied to use them, and the number of points scored when the combination is used.



A small example: The player rolls 2, 3, 6, 6, 5. The two 6's are kept and the three remaining dice re-rolled, they give new values: 1, 1, 6. The player may now choose to score 20 points immediately for a Full House. Instead, he or she decides to re-roll the two 1's again, in hope there will be another 6. The dice give 4 and 5 and the player will score either 18 points for Sixes or 27 points for Chance.

The main point of the game is that there are eleven combinations and eleven rounds. During the whole game, each combination must be used exactly once. It may happen that some result would not fit into any available combination. In such a case, the player must select some combination anyway, scoring zero points for that round and losing the possibility to use that combination later. These rules make the game very tricky, especially at the end, when the combinations have been almost exhausted.

Now, we get back to Isaac. He found a casino with an electronic version of this dice game. After carefully watching many games of other players, he was able to crack the random-number generator used in the machine. Therefore, he is able to predict the following rolls exactly. What an opportunity! However, it is still not easy to find the optimal strategy. If you write a program that would help him to become rich, he may share some of his money with you.
输入解释
The input contains severalscenarios, each of them specified on a single line. The line containsthree numbers separated by a space: A, C, and X0. These numbers describe the random-number generator: A is called a multiplier (1 ≤ A ≤ 231), C is an increment (0 ≤ C ≤ 231), and X0 isthe initial seed (0 ≤ X0 ≤ 231). The last scenario is followed by a line containing three zeros.The generator is a linear congruential generator, which means that the next random number iscalculated from the previous one using the following formula:

Xn+1 = (A * Xn + C) mod 232
The modulo operation specifies that only the lowest 32 bits of the result are used, the rest is discarded.Numbers X1, X2, X3... constitute a pseudo-random sequence, each of them determines theresult of one individual roll of a dice. With congruential generators,the "randomness" ofthe numbers is in their higher bits only - therefore, to get a resultof the n-th roll (startingwith n = 1), we discard lower 16 bits of the number Xn and compute the remainder when thenumber in bits 16-31 is divided by six. This gives a number between 0 and 5, by adding one, weget a number shown on a dice:
roll(n) = [floor(Xn / 216) mod 6]+1
For example, when A = 69069, C = 5, and the X0 = 0 is zero, we get the following sequence of'random' rolls: 1, 6, 6, 3, 2, 4, 3, 2, 3, 5, 1, 6, 6, 4, 5, 1, 3, 4, 1, ..
输出解释
For each scenario, print one integer number: the maximal number of points that may be scored in a game determined by the given generator. The score is calculated after 11 rounds as the sum of scores in all combinations.
输入样例
69069 5 0
69069 5 2
1664525 1013904223 177
1103515245 12345 67890
0 0 0
输出样例
235
194
241
235
来自杭电HDUOJ的附加信息
Recommend lcy

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

题目来源 CTU Open 2008

源链接: HDU-2784

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

共提交 0

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