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

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
3 1
0 1 0
1 0 0
0 0 0
Output
0.250000000000
Input
4 4
0 1 0 1
1 0 1 0
0 1 0 1
1 0 1 0
Output
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代码:

复制代码
 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 }
复制代码

 

posted @   Angel_Kitty  阅读(437)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示
哥伦布
14°
14:09发布
哥伦布
14:09发布
14°
大雨
南风
3级
空气质量
相对湿度
93%
今天
中雨
14°/19°
周日
中雨
5°/19°
周一
1°/11°