zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    Condition Variables
    Cocos2d-x执行时错误:Cocos2d: Get data from file(xxx.xxx) failed!
    HDU
    Android context空指针异常
    linux c server and client 简单的通信
    UVM:8.4.3 用factory 机制创建实例的接口
    5.4 桥接模式(4.2)
    rac安装_grid安装校验报错之grid未建立信任关系
    git 使用ss5代理
    convmv 解决GBK 迁移到 UTF-8 ,中文 文件名乱码
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/4810071.html
Copyright © 2011-2022 走看看