CF839E.Mother of Dragons

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn castles in the Lannister's Kingdom and some walls connect two castles, no two castles are connected by more than one wall, no wall connects a castle to itself.

Sir Jaime Lannister has discovered that Daenerys Targaryen is going to attack his kingdom soon. Therefore he wants to defend his kingdom. He has kk liters of a strange liquid. He wants to distribute that liquid among the castles, so each castle may contain some liquid (possibly zero or non-integer number of liters). After that the stability of a wall is defined as follows: if the wall connects two castles aa and bb , and they contain xx and yy liters of that liquid, respectively, then the strength of that wall is xyx·y .

Your task is to print the maximum possible sum of stabilities of the walls that Sir Jaime Lannister can achieve.

输入格式

The first line of the input contains two integers nn and kk ( 1<=n<=401<=n<=40 , 1<=k<=10001<=k<=1000 ).

Then nn lines follows. The ii -th of these lines contains nn integers ai,1,ai,2,...,ai,na_{i,1},a_{i,2},...,a_{i,n} (). If castles ii and jj are connected by a wall, then ai,j=1a_{i,j}=1 . Otherwise it is equal to 00 .

It is guaranteed that ai,j=aj,ia_{i,j}=a_{j,i} and ai,i=0a_{i,i}=0 for all 1<=i,j<=n1<=i,j<=n .

输出格式

Print the maximum possible sum of stabilities of the walls that Sir Jaime Lannister can achieve.

Your answer will be considered correct if its absolute or relative error does not exceed 10610^{-6} .

Namely: let's assume that your answer is aa , and the answer of the jury is bb . The checker program will consider your answer correct, if .

输入输出样例

  • 输入#1

    3 1
    0 1 0
    1 0 0
    0 0 0
    

    输出#1

    0.250000000000
    
  • 输入#2

    4 4
    0 1 0 1
    1 0 1 0
    0 1 0 1
    1 0 1 0
    

    输出#2

    4.000000000000
    

说明/提示

In the first sample, we can assign 0.5,0.5,00.5,0.5,0 liters of liquid to castles 1,2,31,2,3 , respectively, to get the maximum sum ( 0.250.25 ).

In the second sample, we can assign 1.0,1.0,1.0,1.01.0,1.0,1.0,1.0 liters of liquid to castles 1,2,3,41,2,3,4 , respectively, to get the maximum sum ( 4.04.0 )

首页