A11132 | Mother of Dragons
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ 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 $k$ 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 $a$ and $b$ , and they contain $x$ and $y$ liters of that liquid, respectively, then the strength of that wall is $x·y$ .
Your task is to print the maximum possible sum of stabilities of the walls that Sir Jaime Lannister can achieve.
Sir Jaime Lannister has discovered that Daenerys Targaryen is going to attack his kingdom soon. Therefore he wants to defend his kingdom. He has $k$ 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 $a$ and $b$ , and they contain $x$ and $y$ liters of that liquid, respectively, then the strength of that wall is $x·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 $n$ and $k$ ( $1<=n<=40$ , $1<=k<=1000$ ).
Then $n$ lines follows. The $i$ -th of these lines contains $n$ integers $a_{i,1},a_{i,2},...,a_{i,n}$ (). If castles $i$ and $j$ are connected by a wall, then $a_{i,j}=1$ . Otherwise it is equal to $0$ .
It is guaranteed that $a_{i,j}=a_{j,i}$ and $a_{i,i}=0$ for all $1<=i,j<=n$ .
Then $n$ lines follows. The $i$ -th of these lines contains $n$ integers $a_{i,1},a_{i,2},...,a_{i,n}$ (). If castles $i$ and $j$ are connected by a wall, then $a_{i,j}=1$ . Otherwise it is equal to $0$ .
It is guaranteed that $a_{i,j}=a_{j,i}$ and $a_{i,i}=0$ for all $1<=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 $10^{-6}$ .
Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct, if .
Your answer will be considered correct if its absolute or relative error does not exceed $10^{-6}$ .
Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . 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,0$ liters of liquid to castles $1,2,3$ , respectively, to get the maximum sum ( $0.25$ ).
In the second sample, we can assign $1.0,1.0,1.0,1.0$ liters of liquid to castles $1,2,3,4$ , respectively, to get the maximum sum ( $4.0$ )
In the second sample, we can assign $1.0,1.0,1.0,1.0$ liters of liquid to castles $1,2,3,4$ , respectively, to get the maximum sum ( $4.0$ )
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted