CF107B.Basketball Team

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

As a German University in Cairo (GUC) student and a basketball player, Herr Wafa was delighted once he heard the news. GUC is finally participating in the Annual Basketball Competition (ABC).

A team is to be formed of nn players, all of which are GUC students. However, the team might have players belonging to different departments. There are mm departments in GUC, numbered from 11 to mm . Herr Wafa's department has number hh . For each department ii , Herr Wafa knows number sis_{i} — how many students who play basketball belong to this department.

Herr Wafa was also able to guarantee a spot on the team, using his special powers. But since he hates floating-point numbers, he needs your help at finding the probability that he will have at least one teammate belonging to his department.

Note that every possible team containing Herr Wafa is equally probable. Consider all the students different from each other.

输入格式

The first line contains three integers nn , mm and hh ( 1<=n<=100,1<=m<=1000,1<=h<=m1<=n<=100,1<=m<=1000,1<=h<=m ) — the number of players on the team, the number of departments in GUC and Herr Wafa's department, correspondingly.

The second line contains a single-space-separated list of mm integers sis_{i} ( 1<=si<=1001<=s_{i}<=100 ), denoting the number of students in the ii -th department. Note that shs_{h} includes Herr Wafa.

输出格式

Print the probability that Herr Wafa will have at least one teammate from his department. If there is not enough basketball players in GUC to participate in ABC, print -1. The answer will be accepted if it has absolute or relative error not exceeding 10610^{-6} .

输入输出样例

  • 输入#1

    3 2 1
    2 1
    

    输出#1

    1
    
  • 输入#2

    3 2 1
    1 1
    

    输出#2

    -1
    
  • 输入#3

    3 2 1
    2 2
    

    输出#3

    0.666667
    

说明/提示

In the first example all 3 players (2 from department 1 and 1 from department 2) must be chosen for the team. Both players from Wafa's departments will be chosen, so he's guaranteed to have a teammate from his department.

In the second example, there are not enough players.

In the third example, there are three possibilities to compose the team containing Herr Wafa. In two of them the other player from Herr Wafa's department is part of the team.

首页