#P12297. [ICPC 2022/2023 WF] Three Kinds of Dice
[ICPC 2022/2023 WF] Three Kinds of Dice
题目描述
See how they roll! According to a famous story, Warren Buffett once challenged Bill Gates to a simple game of dice. He had three dice; the first player could examine them and choose one of the three. The second player would then choose one of the remaining dice, and both players would roll their dice against each other, aiming for the highest numbers. Warren offered to let Bill go first, but this made Bill suspicious so he opted to go second. It turned out to be a wise choice: these were intransitive dice. The first die had an advantage when rolling against the second, the second had an advantage when rolling against the third, but the first did not have an advantage when rolling against the third!
To formalize this: define a "die" as any shape with at least one face such that each face shows a positive integer. When a die is rolled, one of its faces is selected uniformly at random. When two dice roll against each other, the die whose selected face shows a higher number earns point; if both numbers are equal, each die earns points. For dice and , define as the expected number of points earns from a single roll against . If , we say that has an advantage over ; if , the two dice are tied. For example, if is the first die in the sample input and is the second, and , so has an advantage over .
Given two dice and such that has an advantage over , you want a third die that forms an intransitive trio with the other two. Among all that have an advantage over or tie with , compute the lowest possible . If this is less than , you can make an intransitive trio! Similarly, among all such that has an advantage over or ties with , compute the highest possible .
输入格式
The input contains two lines, each describing one die. One of the dice (the first or the second) has an advantage over the other. The die with the advantage is and the other is .
The first integer on a line gives (), the number of faces on the die. Then follow integers ( for each ), giving the integer on each face.
输出格式
Output one line containing the lowest and the highest under the above conditions. The two scores do not need to use the same die . Your answer should have an absolute error of at most .
6 1 1 6 6 8 8
3 2 4 9
0.291666667 0.750000000
4 9 3 7 5
3 4 2 3
0.500000000 0.500000000