D - Maximum Average Sets Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 400

問題文

N 個の品物が与えられます。
i 番目の品物の価値は v_i (1≦i≦N) です。
これらの品物から、A 個以上、B 個以下を選ばなければなりません。
この制約下において、選んだ品物の価値の平均の最大値を求めてください。
また、選んだ品物の平均が最大となるような品物の選び方が何通りあるかを求めてください。

制約

  • 1≦N≦50
  • 1≦A≦B≦N
  • 1≦v_i≦10^{15}
  • v_i は全て整数である。

入力

入力は以下の形式で標準入力から与えられる。

N A B
v_1 v_2 ... v_N  

出力

解答を 2 行に出力せよ。
1 行目には、選んだ品物の価値の平均の最大値を出力せよ。絶対誤差または相対誤差が 10^{−6} 以下ならば正解となる。
2 行目には、選んだ品物の平均が最大となるような品物の選び方の数を出力せよ。


入力例 1

5 2 2
1 2 3 4 5

出力例 1

4.500000
1

4 番目の品物と 5 番目の品物を選ぶと価値の平均が最大となるため、出力の 1 行目は 4.5 です。
また、それ以外の品物の選び方で価値の平均が 4.5 になるものはないため、出力の 2 行目は 1 です。


入力例 2

4 2 3
10 20 10 10

出力例 2

15.000000
3

価値の平均が最大となる品物の選び方は複数存在することがあります。


入力例 3

5 1 5
1000000000000000 999999999999999 999999999999998 999999999999997 999999999999996

出力例 3

1000000000000000.000000
1

入力例 4

50 1 50
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

出力例 4

1.000000
1125899906842623

Score : 400 points

Problem Statement

You are given N items.
The value of the i-th item (1 \leq i \leq N) is v_i.
Your have to select at least A and at most B of these items.
Under this condition, find the maximum possible arithmetic mean of the values of selected items.
Additionally, find the number of ways to select items so that the mean of the values of selected items is maximized.

Constraints

  • 1 \leq N \leq 50
  • 1 \leq A,B \leq N
  • 1 \leq v_i \leq 10^{15}
  • Each v_i is an integer.

Input

The input is given from Standard Input in the following format:

N A B
v_1
v_2
...
v_N

Output

Print two lines.
The first line should contain the maximum possible arithmetic mean of the values of selected items. The output should be considered correct if the absolute or relative error is at most 10^{-6}.
The second line should contain the number of ways to select items so that the mean of the values of selected items is maximized.


Sample Input 1

5 2 2
1 2 3 4 5

Sample Output 1

4.500000
1

The mean of the values of selected items will be maximized when selecting the fourth and fifth items. Hence, the first line of the output should contain 4.5.
There is no other way to select items so that the mean of the values will be 4.5, and thus the second line of the output should contain 1.


Sample Input 2

4 2 3
10 20 10 10

Sample Output 2

15.000000
3

There can be multiple ways to select items so that the mean of the values will be maximized.


Sample Input 3

5 1 5
1000000000000000 999999999999999 999999999999998 999999999999997 999999999999996

Sample Output 3

1000000000000000.000000
1