状态压缩DP题单

2024-04-19 01:12
文章标签 dp 压缩 状态 题单

本文主要是介绍状态压缩DP题单,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

P1433 吃奶酪(最短路)

dp(i, s) 表示从 i 出发经过的点的记录为 s 的路线距离最小值

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 20;
signed main()
{	int n; cin >> n;vector<double>x(n + 1), y(n + 1);vector<vector<double>> dp(n + 1, vector<double>(1 << (n + 1), 2e9));x[0] = 0, y[0] = 0;auto dis = [&](int i, int j) -> double{return sqrt((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]));};for(int i = 1; i <= n; i ++){cin >> x[i] >> y[i];
//		dp[i][1 << (i - 1)] = 0;}dp[0][1] = 0;for(int s = 1; s < (1 << (n + 1)); s ++){for(int i = 0; i <= n; i ++){if((s & (1 << (i))) == 0) continue;for(int j = 0; j <= n; j ++){if(i == j) continue;if((s & (1 << (j))) == 0) {continue;}
//				cout << s << " " << i << " " << j << '\n';dp[i][s] = min(dp[i][s], dp[j][s - (1 << (i))] + dis(i, j)); }}}double ans = -1;for(int i = 1; i <= n; i ++){double s = dp[i][(1 << (n + 1)) -1];if(ans==-1||ans>s) ans=s;}cout << fixed << setprecision(2) << ans << '\n';
}

 

P8733 [蓝桥杯 2020 国 C] 补给(floyd)

 dp(i, s) 表示到达 i ,经过的点的记录为 s 的路线距离最小值

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 20;
signed main()
{	int n, D; cin >> n >> D;vector<double>x(n + 1), y(n + 1);vector<vector<double>> dp(n + 1, vector<double>((1 << n) + 10, 2e9)), f(n + 1, vector<double>(n + 1, 2e9));auto dis = [&](int i, int j) -> double{return sqrt((x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]));};for(int i = 0; i < n; i ++) cin >> x[i] >> y[i];for(int i = 0; i < n; i ++)for(int j = 0; j < n; j ++){double now = dis(i, j);if(now <= D) f[i][j] = now;}for(int k = 0; k < n; k ++)for(int i = 0; i < n; i ++)for(int j = 0; j < n; j ++)f[i][j] = min(f[i][k] + f[k][j], f[i][j]);dp[0][1] = 0;for(int s = 1; s < (1 << n); s ++){for(int i = 0; i < n; i ++){if((s & (1 << i)) == 0) continue;for(int j = 0; j < n; j ++){	if(i == j) continue;if((s & (1 << j)) == 0) continue;dp[i][s] = min(dp[i][s], dp[j][s - (1 << i)] + f[i][j]);
//				cout << i << " " << j << " " << f[i][j] << '\n';}}}double ans = 1e9;for(int i = 0; i < n; i ++){
//		cout << i << " " << (1 << (n - 1)) << " " << dp[i][1 << (n - 1)] << '\n';double now = f[0][i] + dp[i][(1 << n) - 1];ans = min(ans, now);}cout << fixed << setprecision(2) << ans << '\n';
}

P7859 [COCI2015-2016#2] GEPPETTO(简单枚举状态)

 

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 4e5 + 10;
typedef long long ll;
int a[25][25]; 
signed main()
{ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);int n, m; cin >> n >> m;for(int i = 1; i <= m; i ++){int x, y; cin >> x >> y;a[x][y] = a[y][x] = 1;}int ans = 1;for(int s = 1; s < (1 << n); s ++){int f = 0;for(int i = 1; i <= n; i ++){if((s & (1 << (i - 1))) == 0) continue; for(int j = i + 1; j <= n; j ++){if((s & (1 << (j - 1))) == 0) continue;if(a[i][j] || a[j][i]) {f = 1; 
//					cout << s << " " << i << " " << (s & (1 << (i - 1))) << " " << j << " "<< (s & (1 << (j - 1))) << '\n'; break;}}if(f) break;}
//		cout << s << ' ' << f << '\n';if(!f) ans ++;}cout << ans << '\n';
}

P8687 [蓝桥杯 2019 省 A] 糖果

 

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 20;
/*
1 3 3
1 2 3
*/
signed main()
{	int n, m, k; cin >> n >> m >> k;vector<int>dp(1 << 21, -1), a(105);for(int i = 1; i <= n; i ++) {int s = 0;for(int j = 1; j <= k; j ++){int x; cin >> x;x --;s |= (1 << x);}
//		s |= (1 << x), s |= (1 << y), s |= (1 << z);
//		int s = (1 << x) + (1 << y) + (1 << z);a[i] = s;}dp[0] = 0;for(int s = 0; s < (1 << m); s ++){if(dp[s] == -1) continue;for(int i = 1; i <= n; i ++){if(dp[s | a[i]] == -1 || dp[s] + 1 < dp[s | a[i]]){dp[s | a[i]] = dp[s] + 1;
//				cout << s << " " << i << " " << a[i] << ' ' << dp[s | a[i]] << '\n';}}}cout << dp[(1 << m) - 1] << '\n';
}

[ABC332E] Lucky bag(SOS DP)

dp(s, i) 表示状态为 s 装入 i 个背包的最小值。

#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 25; 
signed main()
{	ios::sync_with_stdio(0);cin.tie(0); cout.tie(0);int n, d; cin >> n >> d;vector<double>a(n + 1);vector<vector<double>>dp(1 << n, vector<double>(d + 1, 1e18));double sum = 0;for(int i = 0; i < n; i ++){cin >> a[i];
//		cout << a[i] << ' ';sum += a[i];}double ave = sum / d;
//	cout << ave << '\n';for(int s = 0; s < (1 << n); s ++){double res = 0;for(int j = 0; j < n; j ++) if((1 << j) & s) res += a[j];dp[s][1] = (res - ave) * (res - ave);}for(int i = 2; i <= d; i ++){for(int s = 0; s < (1 << n); s ++){for(int t = s; t > 0; t = (t - 1) & s){dp[s][i] = min(dp[s][i], dp[t][i - 1] + dp[s ^ t][1]);
//				cout << s << " " << i << '\n';}}		}cout << fixed << setprecision(15) << dp[(1 << n) - 1][d] / d << '\n';
}

彩色路径(最短路/边数限制+折半存储)

CCF-CSP认证考试 202312-5 彩色路径 20/50/100分题解_ccf彩色路径-CSDN博客

 

这篇关于状态压缩DP题单的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/916270

相关文章

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

hdu1565(状态压缩)

本人第一道ac的状态压缩dp,这题的数据非常水,很容易过 题意:在n*n的矩阵中选数字使得不存在任意两个数字相邻,求最大值 解题思路: 一、因为在1<<20中有很多状态是无效的,所以第一步是选择有效状态,存到cnt[]数组中 二、dp[i][j]表示到第i行的状态cnt[j]所能得到的最大值,状态转移方程dp[i][j] = max(dp[i][j],dp[i-1][k]) ,其中k满足c

hdu4826(三维DP)

这是一个百度之星的资格赛第四题 题目链接:http://acm.hdu.edu.cn/contests/contest_showproblem.php?pid=1004&cid=500 题意:从左上角的点到右上角的点,每个点只能走一遍,走的方向有三个:向上,向下,向右,求最大值。 咋一看像搜索题,先暴搜,TLE,然后剪枝,还是TLE.然后我就改方法,用DP来做,这题和普通dp相比,多个个向上

hdu1011(背包树形DP)

没有完全理解这题, m个人,攻打一个map,map的入口是1,在攻打某个结点之前要先攻打其他一个结点 dp[i][j]表示m个人攻打以第i个结点为根节点的子树得到的最优解 状态转移dp[i][ j ] = max(dp[i][j], dp[i][k]+dp[t][j-k]),其中t是i结点的子节点 代码如下: #include<iostream>#include<algorithm

hdu4865(概率DP)

题意:已知前一天和今天的天气概率,某天的天气概率和叶子的潮湿程度的概率,n天叶子的湿度,求n天最有可能的天气情况。 思路:概率DP,dp[i][j]表示第i天天气为j的概率,状态转移如下:dp[i][j] = max(dp[i][j, dp[i-1][k]*table2[k][j]*table1[j][col] )  代码如下: #include <stdio.h>#include

usaco 1.1 Broken Necklace(DP)

直接上代码 接触的第一道dp ps.大概的思路就是 先从左往右用一个数组在每个点记下蓝或黑的个数 再从右到左算一遍 最后取出最大的即可 核心语句在于: 如果 str[i] = 'r'  ,   rl[i]=rl[i-1]+1, bl[i]=0 如果 str[i] = 'b' ,  bl[i]=bl[i-1]+1, rl[i]=0 如果 str[i] = 'w',  bl[i]=b

uva 10154 DP 叠乌龟

题意: 给你几只乌龟,每只乌龟有自身的重量和力量。 每只乌龟的力量可以承受自身体重和在其上的几只乌龟的体重和内。 问最多能叠放几只乌龟。 解析: 先将乌龟按力量从小到大排列。 然后dp的时候从前往后叠,状态转移方程: dp[i][j] = dp[i - 1][j];if (dp[i - 1][j - 1] != inf && dp[i - 1][j - 1] <= t[i]

uva 10118 dP

题意: 给4列篮子,每次从某一列开始无放回拿蜡烛放入篮子里,并且篮子最多只能放5支蜡烛,数字代表蜡烛的颜色。 当拿出当前颜色的蜡烛在篮子里存在时,猪脚可以把蜡烛带回家。 问最多拿多少只蜡烛。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cs

uva 10069 DP + 大数加法

代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <queue>#include <map>#include <cl

uva 10029 HASH + DP

题意: 给一个字典,里面有好多单词。单词可以由增加、删除、变换,变成另一个单词,问能变换的最长单词长度。 解析: HASH+dp 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc