Most Powerful(状压dp)

传送门 zoj3471

题目描述

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.

输入

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 the maximal power these N atoms can produce in a line for each case.

样例

  • Input
    2
    0 4
    1 0
    3
    0 20 1
    12 0 1
    1 10 0
    0
  • Output
    4
    22

题解

  • 题意:有n个原子,原子i碰撞j可产生能量w[i][j],然后被撞原子j会消失。给出原子数n和所有的w[i][j],求出能产生的最大能量
  • 我们用sta=0到sta=1<<n-1来表示碰撞过程中所有的状态,1表示原子存在,0表示消失。用dp[sta]来表示当前状态下能达到的最大能量值,那么当只剩下一个原子p的时候,dp[1<<p]就是只剩p时的最大能量值。枚举每一种状态,在该状态下枚举两个存在的原子i和j,用i去碰撞j,状态转移方程为: dp[sta^(1<<j)]=max(dp[sta^(1<<j)],dp[sta]+w[i][j])

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include<bits/stdc++.h>
#define LL long long int
#define INIT(a,b) memset(a,b,sizeof(a))
using namespace std;
const int MAX=0x7fffffff;
const int MIN=-0x7fffffff;
const int INF=0x3f3f3f3f;
int dp[1<<15];
int w[20][20];
int main(){
int n;
while(cin>>n&&n){
INIT(dp,0);
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
cin>>w[i][j];
for(int sta=(1<<n)-1;sta>=0;sta--)//(1)
for(int i=0;i<n;i++)
if(sta&(1<<i))//第i个原子存在
for(int j=0;j<n;j++)
if((sta&(1<<j))&&(i!=j))//第j个原子存在且不是i
dp[sta^(1<<j)]=max(dp[sta^(1<<j)],dp[sta]+w[i][j]);
int Max=MIN;
for(int i=0;i<n;i++)//枚举只剩下一个原子的状态并找到最大值
Max=max(Max,dp[1<<i]);
cout<<Max<<endl;
}
return 0;
}
/*因为后面是用dp[sta]来推出dp[sta^(1<<j)],很明显前面的数是比后面大的,所以注释(1)处需要反向枚举状态*/
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值