• zoj 3471 Most Powerful(状态压缩dp)


    Recently, researchers on Mars have discovered N powerful atoms. All of them are different. These atoms have some properties. When two of these atoms collide, one of them disappears and a lot of power is produced. Researchers know the way every two atoms perform when collided and the power every two atoms can produce.
    
    You are to write a program to make it most powerful, which means that the sum of power produced during all the collides is maximal.

    Input

    There are multiple cases. The first line of each case has an integer N (2 <= N <= 10), which means there are N atoms: A1, A2, ... , AN. Then N lines follow. There are N integers in each line. The j-th integer on the i-th line is the power produced when Ai and Aj collide with Aj gone. All integers are positive and not larger than 10000.
    
    The last case is followed by a 0 in one line.
    
    There will be no more than 500 cases including no more than 50 large cases that N is 10.

    Output

    Output the maximal power these N atoms can produce in a line for each case.

    Sample Input

    2
    0 4
    1 0
    3
    0 20 1
    12 0 1
    1 10 0
    0



    Sample Output

    4
    22
    
     

    枚举所有的状态,0表示存在,1表示不存在(已经与别的气球产生能量并且消失)。然后就是枚举所有的状态(第一个for循环),再在里面两重循环i和j,i表示不消失的那个,j表示消失的那个气球,得到了一个新的状态newS=S+(1<<j),最后就是dp[newS]=max(dp[newS],dp[S]+mp[i][j]);  边界条件是dp[S]=0,   注意这些条件(1、if(S&(1<<i)) continue;         2、if(i==j)continue;     3、if(S&(1<<j)) continue;)

     1 #pragma comment(linker, "/STACK:1024000000,1024000000")
     2 #include<iostream>
     3 #include<cstdio>
     4 #include<cstring>
     5 #include<cmath>
     6 #include<math.h>
     7 #include<algorithm>
     8 #include<queue>
     9 #include<set>
    10 #include<bitset>
    11 #include<map>
    12 #include<vector>
    13 #include<stdlib.h>
    14 using namespace std;
    15 #define max(a,b) (a) > (b) ? (a) : (b)  
    16 #define min(a,b) (a) < (b) ? (a) : (b)
    17 #define ll long long
    18 #define eps 1e-10
    19 #define MOD 1000000007
    20 #define N 16
    21 #define M 1<<N
    22 #define inf 1e12
    23 int n;
    24 int mp[N][N];
    25 int dp[M];
    26 int main()
    27 {
    28     while(scanf("%d",&n)==1){
    29         if(n==0) break;
    30         for(int i=0;i<n;i++){
    31             for(int j=0;j<n;j++){
    32                 scanf("%d",&mp[i][j]);
    33             }
    34         }
    35         
    36         memset(dp,0,sizeof(dp));
    37         for(int S=0;S<(1<<n);S++){
    38             for(int i=0;i<n;i++){
    39                 if(S&(1<<i)) continue;
    40                 for(int j=0;j<n;j++){
    41                     if(i==j) continue;
    42                     if(S&(1<<j)) continue;
    43                     int newS=S+(1<<j);
    44                     dp[newS]=max(dp[newS],dp[S]+mp[i][j]);
    45                 }
    46             }
    47         }
    48         int ans=0;
    49         for(int i=0;i<(1<<n);i++){
    50             ans=max(ans,dp[i]);
    51         }
    52         printf("%d
    ",ans);
    53     }
    54     return 0;
    55 }
    View Code
  • 相关阅读:
    win10下无法安装loadrunner,提示“管理员已阻止你运行此应用”
    【原创】selenium+python+openpyxl实现登录自动化测试,自动读取excel用例数据,并将数据结果自动写入到excel
    用python+openpyxl从表格中读取测试用例的多条数据,然后将执行结果写入表格中
    用python+openpyxl从表格中读取测试用例的多条数据,然后将执行结果写入表格中,同时生成测试报告
    用Python添加写入数据到已经存在的Excel的xlsx文件
    selenium与webdriver驱动与firefox、 chrome匹配版本
    python3学习之lambda+sort
    小白月赛22 J : 计算 A + B
    小白月赛22 F: 累乘数字
    小白月赛22 E : 方格涂色
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/4810071.html
Copyright © 2020-2023  润新知