HLG1473教主的遗产【状压dp】

教主的遗产
Time Limit: 1000 MS Memory Limit: 65536 K
Total Submit: 27(12 users) Total Accepted: 20(12 users) Rating:  Special Judge: No
Description

恭送教主!

教主在2012年7月19日上午10:48,坐上前往北京的火车,从此开始了高富帅的生活。

在教主的的大学四年ACM生涯中,他用事实告诉我们,要想在比赛拿奖,除了平时的刻苦努力外,很大一部分还要依赖比赛时是

做题策略,简单来讲就是做题顺序,唯有想把能过的都过掉,然后再过难题,这样才能在比赛中拿奖。

我们将用这个做题顺序量化表示,即AC系数,AC系数越大,拿奖可能性就越大。

在比赛中会给出n个题,不同做题顺序会有不同的AC系数,假如A先做,B后做的话,B对A的AC系数为4, 反过来 B先做,A后做的话,A对B的AC系数为5,说明先做B后做A将得到更高的AC系数。

设Sij表示第i题在第j题做完后才做获得的AC系数,有三道题a, b, c,做题顺序为bac,则系数和为:Sum = Sab + Scb + Sca。

求一个做题顺序,使得AC系数和最大。

Input

有多组测试数据。

对于每组测试数据,第一行为n(1<=n<=16),表示题目数量。

接下来有n行,每行n个数字,对于1+i行的第j个数字Sij(0 <= Sij <= 32), 表示第i题在第j题之后做的AC系数。

Output
每组测试数据输出一行,包含一个数,为最大系数和。
Sample Input
1

2
0 2 
4 0 
3
0 2 4 
4 0 25 
17 15 0 
Sample Output
0
4
46
Source
2012 Summer Contest 1 - DP
Author
黄李龙@HRBUST

分析:状态压缩 dp[i]表示到达状态i的最大值  由于每一次加入一个新题 都会与前面的旧题产生一个系数  所以扫描一遍就行了

这个题跟那个一笔画的思路很像   由于|的性质每次加入一个点状态都会往后转移  所以状态转移是成立的

代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstdio>
 4 #include <cstring>
 5 using namespace std;
 6
 7 const int maxn = 17;
 8 int a[maxn][maxn];
 9 int n;
10 int dp[1 << maxn];
11
12 int DP() {
13     int Max = 1 << n;
14     memset(dp, -1, sizeof(dp));
15     dp[0] = 0;
16     for(int i = 0; i < Max; i++) {
17         if(dp[i] == -1) continue;
18 //        printf("i == %d\n", i);
19         for(int j = 1; j <= n; j++) {
20             if(( i & ( 1 << ( j - 1 ) ) ) == 0) {
21 //                printf("j ==   %d\n", j);
22                 int sum = 0;
23                 for(int k = 1; k <= n; k++) {
24                     if(k == j) continue;
25                     if((i & ( 1 << ( k - 1) ) ) ) {
26 //                        printf("k ==== %d\n", k);
27                         sum += a[j][k];
28                     }
29                 }
30 //                printf("sum == %d\n", sum);
31                 dp[i | ( 1 << ( j - 1 ) ) ] = max(dp[i | ( 1 << ( j - 1 ) )], dp[i] + sum);
32             }
33         }
34     }
35     return dp[Max - 1];
36 }
37 int main() {
38     while(EOF != scanf("%d",&n) ) {
39         for(int i = 1; i <= n; i++) {
40             for(int j = 1; j <= n; j++) {
41                 scanf("%d",&a[i][j]);
42             }
43         }
44 //`        for(int i = 1; i <= n; i++) {
45 //`            for(int j = 1; j <= n; j++) {
46 //`                printf("%d ", a[i][j]);
47 //`            } puts("");
48 //`        }
49         printf("%d\n", DP());
50     }
51     return 0;
52 }

时间: 2024-11-07 22:56:24

HLG1473教主的遗产【状压dp】的相关文章

ZOJ3305Get Sauce 状压DP,

状压DP的题目留个纪念,首先题意一开始读错了,搞了好久,然后弄好了,觉得DFS可以,最后超时,修改了很久还是超时,没办法看了一下n的范围,然后觉得状压可以,但是没有直接推出来,就记忆化搜索了一下,可是一直错,莫名奇妙,然后没办法看了一下题解,发现了下面这个比较好的方法,然后按照这个方程去推,然后敲,也是WA了好多把,写的太搓了,没人家的清楚明了,唉~也算是给自己留个纪念,状压一直做的都不太好~唉~还好理解了, 参考了  http://blog.csdn.net/nash142857/articl

poj 2411 Mondriaan&#39;s Dream(状压DP)

Mondriaan's Dream Time Limit: 3000MS   Memory Limit: 65536K Total Submissions: 12232   Accepted: 7142 Description Squares and rectangles fascinated the famous Dutch painter Piet Mondriaan. One night, after producing the drawings in his 'toilet series

(状压dp)uva 10817 Headmaster&#39;s Headache

题目地址 1 #include <bits/stdc++.h> 2 typedef long long ll; 3 using namespace std; 4 const int MAX=1e5+5; 5 const int INF=1e9; 6 int s,m,n; 7 int cost[125]; 8 //char sta[MAX]; 9 string sta; 10 int able[125]; 11 int dp[125][1<<8][1<<8]; 12 in

HDU5816 Hearthstone(状压DP)

题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=5816 Description Hearthstone is an online collectible card game from Blizzard Entertainment. Strategies and luck are the most important factors in this game. When you suffer a desperate situation an

HDU 4336 容斥原理 || 状压DP

状压DP :F(S)=Sum*F(S)+p(x1)*F(S^(1<<x1))+p(x2)*F(S^(1<<x2))...+1; F(S)表示取状态为S的牌的期望次数,Sum表示什么都不取得概率,p(x1)表示的是取x1的概率,最后要加一因为有又多拿了一次.整理一下就可以了. 1 #include <cstdio> 2 const int Maxn=23; 3 double F[1<<Maxn],p[Maxn]; 4 int n; 5 int main() 6

Travel(HDU 4284状压dp)

题意:给n个城市m条路的网图,pp在城市1有一定的钱,想游览这n个城市(包括1),到达一个城市要一定的花费,可以在城市工作赚钱,但前提有工作证(得到有一定的花费),没工作证不能在该城市工作,但可以走,一个城市只能工作一次,问pp是否能游览n个城市回到城市1. 分析:这个题想到杀怪(Survival(ZOJ 2297状压dp) 那个题,也是钱如果小于0就挂了,最后求剩余的最大钱数,先求出最短路和 Hie with the Pie(POJ 3311状压dp) 送披萨那个题相似. #include <

BZOJ 1087: [SCOI2005]互不侵犯King( 状压dp )

简单的状压dp... dp( x , h , s ) 表示当前第 x 行 , 用了 h 个 king , 当前行的状态为 s . 考虑转移 : dp( x , h , s ) = ∑ dp( x - 1 , h - cnt_1( s ) , s' ) ( s and s' 两行不冲突 , cnt_1( s ) 表示 s 状态用了多少个 king ) 我有各种预处理所以 code 的方程和这有点不一样 ------------------------------------------------

BZOJ 1072 排列 状压DP

题意:链接 方法:状压DP? 题解:这题其实没啥好写的,不算很难,推一推就能搞出来. 首先看到这个问题,对于被d整除这个条件,很容易就想到是取余数为0,所以想到可能状态中刚开始含有取余数. 先说我的第一个想法,f[i][j]表示选取i个数且此时的mod为j,这样的思想是第一下蹦出来的,当时想的就是在线来搞最终的答案.不过转瞬即发现,这TM不就是暴力吗魂淡!并没有什么卵用,于是开始想这个状态可不可以做什么优化. 显然第二维的j并不需要太大的优化,暂且先将其搁置一边,来考虑第一维的i怎么优化. 把滚

COdeforces#417D Cunning Gena(状压DP)

A boy named Gena really wants to get to the "Russian Code Cup" finals, or at least get a t-shirt. But the offered problems are too complex, so he made an arrangement with his n friends that they will solve the problems for him. The participants

UVA 10817 Headmaster&#39;s Headache 状压DP

记录两个状态S1,S2分别记录哪些课程被1个人教过或2个人教过,然后记忆化搜索 UVA - 10817 Headmaster's Headache Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description Problem D: Headmaster's Headache Time limit: 2 seconds The headmaster of Spr