前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Codeforces 839E Mother of Dragons【__builtin_popcount()的使用】

Codeforces 839E Mother of Dragons【__builtin_popcount()的使用】

作者头像
Angel_Kitty
发布2018-04-09 15:40:54
7460
发布2018-04-09 15:40:54
举报

E. Mother of Dragons

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

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.

Input

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 ai, 1, ai, 2, ..., ai, n (

). If castles i and j are connected by a wall, then ai, j = 1. Otherwise it is equal to 0.

It is guaranteed that ai, j = aj, i and ai, i = 0 for all 1 ≤ i, j ≤ n.

Output

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

.

Examples

Input

代码语言:javascript
复制
3 1
0 1 0
1 0 0
0 0 0

Output

代码语言:javascript
复制
0.250000000000

Input

代码语言:javascript
复制
4 4
0 1 0 1
1 0 1 0
0 1 0 1
1 0 1 0

Output

代码语言:javascript
复制
4.000000000000

Note

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)

题目链接:http://codeforces.com/contest/839/problem/E

分析__builtin_popcount()的使用及原理参看这里

下面给出AC代码:

代码语言:javascript
复制
 1 #include "bits/stdc++.h"
 2 using namespace std;
 3 const int N = 44;
 4 const double eps = 1e-10;
 5 int n , k;
 6 long long graph[N];
 7 double ans;
 8 int clique;
 9 int bitcnt[1 << 22];
10 void solve(long long mask , int cur){
11     clique = max(clique , cur);
12     int idx = -1;
13     int mx = 0;
14     for(int i = 1 ; i <= n ; ++i){
15         if(!((mask >> i) & 1)){
16             continue;
17         }
18         int tmp = __builtin_popcountll(graph[i] & mask);
19         if(idx == -1 || tmp > mx){
20             mx = tmp;
21             idx = i;
22         }
23     }
24     if(idx == -1){
25         return;
26     }
27     clique = max(clique , cur + 1);
28     if(mx + 1 + cur <= clique){
29         return;
30     }
31     solve((mask ^ (1LL << idx)) & graph[idx] , cur + 1);
32     solve(mask ^ (1LL << idx) , cur);
33 }
34 int main(){
35     scanf("%d %d" , &n , &k);
36     for(int i = 1 ; i <= n ; ++i){
37         int tmp;
38         graph[i] = 0;
39         for(int j = 1 ; j <= n ; ++j){
40             scanf("%d" , &tmp);
41             graph[i] |= (1LL << j) * tmp;
42         }
43     }
44     long long mask = 0;
45     for(int i = 1 ; i <= n ; ++i){
46         mask |= 1LL << i;
47     }
48     clique = 1;
49     solve(mask , 0);
50     ans = (1.0 * k * k) / (1.0 * clique * clique);
51     ans *= clique * (clique - 1);
52     ans /= 2;
53     printf("%.6lf\n" , ans);
54 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-08-13 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • E. Mother of Dragons
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档