poj 2280 Islands and Bridges 哈密尔顿路 状压dp

题目链接

题意

给定一个\(N\)个点的无向图,求一条哈密尔顿路径\(C_1C_2...C_n\),使其\(value\)最大。

\(value\)的计算方式如下:\[\begin{aligned}value&=\sum_{i=1}^{n}C_i\\&+\sum_{i=1}^{n-1}C_i*C_{i+1}\\&+\sum_{i=1}^{n-2}C_i*C_{i+1}*C_{i+2}[(C_i,C_{i+2})is\ an\ edge\ in\ the\ graph]\end{aligned}\]

思路

状态表示及转移等与前两题相类似。

因为状态和前两步相关,所以用\(dp[state][i][j]\)表示,接连经过\(j\)点与\(i\)点到达\(state\)状态的最大\(value\)值和对应的路径数目。

注意答案会爆\(int\).

Code

#include <cstdio>
#include <iostream>
#include <cstring>
#define maxn 10010
#define inf 0x3f3f3f3f
#define F(i, a, b) for (LL i = (a); i < (b); ++i)
#define F2(i, a, b) for (LL i = (a); i <= (b); ++i)
#define dF(i, a, b) for (LL i = (a); i > (b); --i)
#define dF2(i, a, b) for (LL i = (a); i >= (b); --i)
using namespace std;
bool vis[maxn][13][13], dis[13][13];
typedef long long LL;
LL v[13], n, m;
struct node { LL v, w, flag; }dp[maxn][13][13];
node dfs(LL state, LL p1, LL p2) {
    if (state==(1<<p1)+(1<<p2)) return {v[p1]+v[p2]+v[p1]*v[p2], 1, 1};
    if (vis[state][p1][p2]) return dp[state][p1][p2];
    vis[state][p1][p2] = true;
    LL sta = state - (1<<p1);
    node ans = {0, 0, 0};
    bool flag = false;
    F(i, 0, n) {
        if (i==p1 || i==p2 || !dis[i][p2] || !(state&(1<<i))) continue;
        node nd = dfs(sta, p2, i);
        if (!nd.flag) continue;
        flag = true;
        LL temp = nd.v + (dis[p1][i]?v[p1]*v[p2]*v[i]:0);
        if (temp > ans.v) ans = {temp, nd.w};
        else if (temp == ans.v) ans.w += nd.w;
    }
    if (!flag) return dp[state][p1][p2] = {0, 0, 0};
    else return dp[state][p1][p2] = {ans.v + v[p1] + v[p1]*v[p2], ans.w, 1};
}
void work() {
    memset(dis, 0, sizeof dis);
    memset(vis, 0, sizeof vis);
    memset(dp, 0, sizeof dp);
    scanf("%lld%lld", &n, &m);
    F(i, 0, n) scanf("%lld", &v[i]);
    F(i, 0, m) {
        LL u, v;
        scanf("%lld%lld", &u, &v); --u, --v;
        dis[u][v] = dis[v][u] = 1;
    }
    if (n==1) { printf("%lld %lld\n", v[0], 1); return; }
    node ans = {0, 0, 0};
    F(i, 0, n) {
        F(j, 0, n) {
            if (i==j || !dis[j][i]) continue;
            node temp = dfs((1<<n)-1, i, j);
            if (!temp.flag) continue;
            if (temp.v > ans.v) ans = temp;
            else if (temp.v == ans.v) ans.w += temp.w;
        }
    }
    printf("%lld %lld\n", ans.v, ans.w>>1);
}
int main() {
    LL T;
    scanf("%lld", &T);
    while (T--) work();
    return 0;
}

原文地址:https://www.cnblogs.com/kkkkahlua/p/8451974.html

时间: 2024-10-24 20:33:46

poj 2280 Islands and Bridges 哈密尔顿路 状压dp的相关文章

POJ 2288 Islands and Bridges 哈密尔顿路 状态压缩DP

找最长的其实是很裸的状态压缩DP,棘手的地方是要统计数量,其实只要再来一个数组存就好. 不过代码比较长,细节要注意的地方毕较多,wa了很多发,还是要仔细啊 用递推和记忆化搜索分别写了一遍 #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <climits> #include <string> #include <

POJ 3311 Hie with the Pie(TSP问题 状压DP)

Description The Pizazz Pizzeria prides itself in delivering pizzas to its customers as fast as possible. Unfortunately, due to cutbacks, they can afford to hire only one driver to do the deliveries. He will wait for 1 or more (up to 10) orders to be

POJ 2288 Islands and Bridges(状压dp)

Language: Default Islands and Bridges Time Limit: 4000MS   Memory Limit: 65536K Total Submissions: 9312   Accepted: 2424 Description Given a map of islands and bridges that connect these islands, a Hamilton path, as we all know, is a path along the b

poj 2288 Islands and Bridges

题意: 给你一个双向连通图,求 获得权值最大 的 哈密顿通路的 权值 和 这个权值对应的数目: 其中权值计算方法是  列如 ABCD  权值是a+b+c+d+ab+bc+cd 如果 A,B,C  和B,C,D 可构成三角形分别加上abc,bcd: 这个题 和poj 3311  很相像: 那个需要记录一个最后到达的地方   这个需要记录俩个罢了 DP[i][a][b]其中 i  二进制 中1表示这个点走过了   最后走的的 的是b>>a 因为对于已经走过了{1,2,3,4,,5,6,..,N}

poj2288(Islands and Bridges) 状压DP

题目链接:http://poj.org/problem?id=2288 题意:每个点有一个权值Vi,找一条哈密顿路径,路径的权值来自三条:1 路径上的Vi之和 2 所有相邻点对ij的Vi*Vj之和 3 相邻连续三点i,j,k(并且三点要构成三角形)Vi*Vj*Vk之和. 解法:dp[st][i][j]表示从j走到i并且剩下集合st没有走的最大权值.关于路径书,在转移的时候顺便计算即可:这道题令自己恶心了好久,最后原因是自己犯了一个严重错误,题目读错了,没有读到Vi*Vj*Vk要保证ijk能够构成

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

poj 1699 Best Sequence(AC自动机+状压DP)

题目链接:poj 1699 Best Sequence 题目大意:给定N个DNA序列,问说最少多长的字符串包含所有序列. 解题思路:AC自动机+状压DP,先对字符串构造AC自动机,然后在dp[s][i]表示匹配了s,移动到节点i时候的最短步数. #include <cstdio> #include <cstring> #include <queue> #include <vector> #include <iostream> #include &

POJ 1185 炮兵阵地 状压dp

http://poj.org/problem?id=1185 经典题目不必多说,直接贴代码. 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 6 int n, m, cnt, size; 7 int a[110], st[70], ct[70]; 8 char str[15]; 9 int f[110][70][70]; 10 void init(

POJ 3254 Corn Fields 状压DP

链接:http://poj.org/problem?id=3254 题意:一块M*N的田地,每小块地大小是1*1,可以种植物的标记为1,不可以种植物的标记为0,并且相邻的两块地不可以同时种植物.问题是有多少种不同的种植方案(所有地都不种也是一种种植方案) 思路:这是第一道状压DP题,从第一行更新到最后一行,每一行用一个N位的二进制数来表示该行的状态1表示该位置种了植物,0表示该位置没种植物.因为每块地只对相邻的土地能否种植有所影响,所以每一行的状态可以用前一行的状态递推得到. 资料:http:/