• 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
    " , ans);
    54 }
  • 相关阅读:
    第01组 Alpha冲刺(2/6)
    第01组 Alpha冲刺(1/6)
    第08组 Alpha冲刺(6/6)
    2019 SDN上机第4次作业
    第08组 Alpha冲刺(5/6)
    2019 SDN阅读作业
    2019 SDN上机第3次作业
    第08组 Alpha冲刺(4/6)
    第08组 Alpha冲刺(3/6)
    第08组 Alpha冲刺(2/6)
  • 原文地址:https://www.cnblogs.com/ECJTUACM-873284962/p/7352306.html
Copyright © 2020-2023  润新知