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 outp...

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 }

 

目录
相关文章
|
12月前
codeforces 285C - Building Permutation
题目大意是有一个含n个数的数组,你可以通过+1或者-1的操作使得其中的数是1--n中的数,且没有重复的数。 既然是这样的题意,那么我就应该把原数组中的数尽量往他最接近1--n中的位置放,然后求差绝对值之和,但有多个数,怎么使他们和最小,这样就要对其进行排序了,直接按大小给它们安排好位置,然后计算。
29 0
|
2月前
【practise】大数相加、大数相乘
【practise】大数相加、大数相乘
UVa11565 - Simple Equations
UVa11565 - Simple Equations
48 0
UVa11296 - Counting Solutions to an Integral Equation(枚举技巧)
UVa11296 - Counting Solutions to an Integral Equation(枚举技巧)
47 0
|
Unix Python
LeetCode 71. Simplify Path
给定文件的绝对路径(Unix下的路径)字符串,简化此字符串。
82 0
LeetCode 71. Simplify Path
|
Perl
AtCoder Beginner Contest 217 F - Make Pair (区间dp)
AtCoder Beginner Contest 217 F - Make Pair (区间dp)
114 0
|
人工智能 BI
CodeForces - 1485D Multiples and Power Differences (构造+lcm)
CodeForces - 1485D Multiples and Power Differences (构造+lcm)
79 0
AtCoder Beginner Contest 214 D.Sum of Maximum Weights (思维 并查集)
AtCoder Beginner Contest 214 D.Sum of Maximum Weights (思维 并查集)
111 0
|
机器学习/深度学习 人工智能 Java
AtCoder Beginner Contest 215 D - Coprime 2 (质因子分解 gcd)
AtCoder Beginner Contest 215 D - Coprime 2 (质因子分解 gcd)
95 0