Maximum Average Sets

AtCoder
IDabc057_d
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
5 2 2
1 2 3 4 5
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$.
Input #2
4 2 3
10 20 10 10
Output #2
15.000000
3

There can be multiple ways to select items so that the mean of the values will be maximized.
Input #3
5 1 5
1000000000000000 999999999999999 999999999999998 999999999999997 999999999999996
Output #3
1000000000000000.000000
1
API Response (JSON)
{
  "problem": {
    "name": "Maximum Average Sets",
    "description": {
      "content": "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 pos",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc057_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given $N$ items.  \nThe _value_ of the $i$\\-th item $(1 \\leq i \\leq N)$ is $v_i$.  \nYour have to select at least $A$ and at most $B$ of these items.  \nUnder this condition, find the maximum pos...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments