vijos P1426兴奋剂检查 多维费用背包问题的hash
这是个好题,容易想到用dp[i][v1][v2][v3][v4][v5]表示在前i个物品中,各种东西的容量是那个的时候,能产生的最大价值。
时间不会TLE,但是会MLE.所以就需要把那5维状态进行hash
其实就是对这个排列进行一个hash。
newState: v1, v2, v3, v4, v5这个排列。
oldState: v1 - w[1], v2 - w[2], v3 - w[3], v4 - w[4], v5 - w[5]
这个排列。
然后要进行hash。我写了一个hash。TLE 两组数据。
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <assert.h>
#define IOS ios::sync_with_stdio(false)
using namespace std;
#define inf (0x3f3f3f3f)
typedef long long int LL; #include <iostream>
#include <sstream>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <bitset>
const int maxn = + ;
int dp[ + ];
int limit[maxn];
int w[maxn][];
int val[maxn];
int togive;
const int seed = ;
typedef unsigned long long int ULL;
ULL powseed[];
int first[ + ];
ULL Edge[ + ];
int tonext[ + ];
int id[ + ];
int num;
int toadd(ULL val) {
int u = val % ;
for (int i = first[u]; i; i = tonext[i]) {
if (val == Edge[i]) return id[i];
}
++num;
tonext[num] = first[u];
first[u] = num;
Edge[num] = val;
id[num] = ++togive;
return togive;
}
int tohash(int a, int b, int c, int d, int e) {
ULL val = a * powseed[] + b * powseed[] +
c * powseed[] + d * powseed[] + e * powseed[];
return toadd(val);
}
//适用于正负整数
template <class T>
inline bool fast_in(T &ret) {
char c;
int sgn;
if(c = getchar(), c == EOF) return ; //EOF
while(c != '-' && (c < '' || c > '')) c = getchar();
sgn = (c == '-') ? - : ;
ret = (c == '-') ? : (c - '');
while(c = getchar(), c >= '' && c <= '') ret = ret * + (c - '');
ret *= sgn;
return ;
}
void work() {
int n, m;
// cin >> n >> m;
// scanf("%d%d", &n, &m);
fast_in(n);
fast_in(m);
for (int i = ; i <= m; ++i) {
// cin >> limit[i];
// scanf("%d", &limit[i]);
fast_in(limit[i]);
}
for (int i = ; i <= n; ++i) {
// cin >> val[i];
// scanf("%d", &val[i]);
fast_in(val[i]);
for (int j = ; j <= m; ++j) {
// cin >> w[i][j];
// scanf("%d", &w[i][j]);
fast_in(w[i][j]);
}
}
// cout << tohash(1, 2, 3, 4, 5) << endl;
// cout << tohash(1, 2, 4, 3, 5) << endl;
// cout << tohash(1, 2, 3, 4, 5) << endl;
int ans = ;
for (int i = ; i <= n; ++i) {
for (int a1 = limit[]; a1 >= w[i][]; --a1) {
for (int a2 = limit[]; a2 >= w[i][]; --a2) {
for (int a3 = limit[]; a3 >= w[i][]; --a3) {
for (int a4 = limit[]; a4 >= w[i][]; --a4) {
for (int a5 = limit[]; a5 >= w[i][]; --a5) {
int now = tohash(a1, a2, a3, a4, a5);
int pre = tohash(a1 - w[i][], a2 - w[i][], a3 - w[i][], a4 - w[i][], a5 - w[i][]);
dp[now] = max(dp[now], dp[pre] + val[i]);
ans = max(ans, dp[now]);
}
}
}
}
}
}
printf("%d\n", ans);
} int main() {
#ifdef local
freopen("data.txt", "r", stdin);
// freopen("data.txt", "w", stdout);
#endif
powseed[] = ;
for (int i = ; i <= ; ++i) {
powseed[i] = powseed[i - ] * seed;
}
work();
return ;
}
题解的那个hash我真看不懂。不是看不懂,是不理解。
其实他的意思类似于a * 1000000 + b * 100000 + c * 1000 + e * 100 * d * 10
这样类似的。但是明显这个值太大了。他就乘上了limit[i],这个我不能证明了,
好像又不会重复,数字又小。ORZ
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <assert.h>
#define IOS ios::sync_with_stdio(false)
using namespace std;
#define inf (0x3f3f3f3f)
typedef long long int LL; #include <iostream>
#include <sstream>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <bitset>
const int maxn = + ;
int dp[ + ];
int limit[maxn];
int w[maxn][];
int val[maxn]; int tohash(int a, int b, int c, int d, int e) {
return (a * (limit[] + ) * (limit[] + ) * (limit[] + ) * (limit[] + )
+ b * (limit[] + ) * (limit[] + ) * (limit[] + )
+ c * (limit[] + ) * (limit[] + ) + d * (limit[] + ) + e);
}
//适用于正负整数
template <class T>
inline bool fast_in(T &ret) {
char c;
int sgn;
if(c = getchar(), c == EOF) return ; //EOF
while(c != '-' && (c < '' || c > '')) c = getchar();
sgn = (c == '-') ? - : ;
ret = (c == '-') ? : (c - '');
while(c = getchar(), c >= '' && c <= '') ret = ret * + (c - '');
ret *= sgn;
return ;
}
void work() {
int n, m;
// cin >> n >> m;
// scanf("%d%d", &n, &m);
fast_in(n);
fast_in(m);
for (int i = ; i <= m; ++i) {
// cin >> limit[i];
// scanf("%d", &limit[i]);
fast_in(limit[i]);
}
for (int i = ; i <= n; ++i) {
// cin >> val[i];
// scanf("%d", &val[i]);
fast_in(val[i]);
for (int j = ; j <= m; ++j) {
// cin >> w[i][j];
// scanf("%d", &w[i][j]);
fast_in(w[i][j]);
}
}
// cout << tohash(1, 2, 3, 4, 5) << endl;
// cout << tohash(1, 2, 4, 3, 5) << endl;
// cout << tohash(1, 2, 3, 4, 5) << endl;
int ans = ;
for (int i = ; i <= n; ++i) {
for (int a1 = limit[]; a1 >= w[i][]; --a1) {
for (int a2 = limit[]; a2 >= w[i][]; --a2) {
for (int a3 = limit[]; a3 >= w[i][]; --a3) {
for (int a4 = limit[]; a4 >= w[i][]; --a4) {
for (int a5 = limit[]; a5 >= w[i][]; --a5) {
int now = tohash(a1, a2, a3, a4, a5);
int pre = tohash(a1 - w[i][], a2 - w[i][], a3 - w[i][], a4 - w[i][], a5 - w[i][]);
dp[now] = max(dp[now], dp[pre] + val[i]);
ans = max(ans, dp[now]);
}
}
}
}
}
}
printf("%d\n", ans);
} int main() {
#ifdef local
freopen("data.txt", "r", stdin);
// freopen("data.txt", "w", stdout);
#endif
work();
return ;
}
感觉我的hash才是正确的打开方式
vijos P1426兴奋剂检查 多维费用背包问题的hash的更多相关文章
- VIJOS P1426兴奋剂检查[DP 状态哈希]
背景 北京奥运会开幕了,这是中国人的骄傲和自豪,中国健儿在运动场上已经创造了一个又一个辉煌,super pig也不例外……………… 描述 虽然兴奋剂是奥运会及其他重要比赛的禁药,是禁止服用的.但是运动 ...
- HDU 2159 二维费用背包问题
一个关于打怪升级的算法问题.. 题意:一个人在玩游戏老是要打怪升级,他愤怒了,现在,还差n经验升级,还有m的耐心度(为零就删游戏不玩了..),有m种怪,有一个最大的杀怪数s(杀超过m只也会删游戏的.. ...
- J. Bottles 二维费用背包问题
http://codeforces.com/contest/730/problem/J 3 4 36 1 90 45 40 其实可以知道,选出多少个瓶子呢?是确定的,当然选一些大的 ...
- UESTC - 878 温泉旅店 二维费用背包问题
http://acm.uestc.edu.cn/#/problem/show/878 设dp[i][j][k]表示在前i个数中,第一个得到的异或值是j,第二个人得到的异或值是k的方案数有多少种. 因为 ...
- vijos1426兴奋剂检查(多维费用的背包问题+状态压缩+hash)
背景 北京奥运会开幕了,这是中国人的骄傲和自豪,中国健儿在运动场上已经创造了一个又一个辉煌,super pig也不例外……………… 描述 虽然兴奋剂是奥运会及其他重要比赛的禁药,是禁止服用的.但是运动 ...
- hdu_2159(二维费用背包)
HDU_2159 二维费用背包问题 http://acm.hdu.edu.cn/showproblem.php?pid=2159 #include<cstdio> #include< ...
- 2159 ACM 杭电 杀怪 二维费用的背包+完全背包问题
题意:已知经验值,保留的忍耐度,怪的种数和最多的杀怪数.求进入下一级的最优方案. 思路:用二维费用的背包+完全背包问题 (顺序循环)方法求解 什么是二维费用的背包问题? 问题: 二维费用的背包问题是指 ...
- 动态规划:HDU3496-Watch The Movie(二维费用的背包问题)
Watch The Movie Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/65535 K (Java/Others) ...
- 动态规划:HDU2159-FATE(二维费用的背包问题)
FATE Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submi ...
随机推荐
- POST & GET & Ajax 全解
GET&POST&Ajax 全解 一.POST和GET的差别 GET:GET方法提交数据不安全,数据置于请求行.客户段地址栏可见:GET方法提交的数据限制大小在255个字符之内.參数直 ...
- shutdown abort模式丢失redo,使用隐含參数启库
shutdown abort模式 丢失redo log 无法open数据库 通过告警报错ORA-00354: corrupt redo log block header 从该错误能够看出当前日志的re ...
- leetcode笔记:Majority Element
一. 题目描写叙述 Given an array of size n, find the majority element. The majority element is the element t ...
- cmake使用演示样例与整理总结
本文代码托管于github cmake_demo cmake中一些提前定义变量 PROJECT_SOURCE_DIR project的根文件夹 PROJECT_BINARY_DIR 执行cmake命 ...
- 李洪强iOS开发之性能优化技巧
李洪强iOS开发之性能优化技巧 通过静态 Analyze 工具,以及运行时 Profile 工具分析性能瓶颈,并进行性能优化.结合本人在开发中遇到的问题,可以从以下几个方面进行性能优化. 一.view ...
- 解决Struts配置文件里无提示信息的问题
(1)在struts2配置文件编写的时候.有可能无法提示所有信息,在配置文件里打个"<" 后,并没有不论什么的提示信息(使用快捷键Alt+/ 也不提示) 原因是下边的 &q ...
- VC2010 利用 def 文件生成 dll 文件的方法
近期有个需求,要生成一个dll 文件.文件里的函数都是採用 stdcall 函数调用约定,可是不希望函数名被修饰(add 被修饰成 add@8). 这时就要用def 文件了. 比方我有以下两个函数: ...
- xcode 程序配置 python 解释器嵌入
1.点击项目->Buid Phases->加号点击 添加RunScript,Shell中写为python路径.一般是/usr/bin/python 2.同样是Build Phases中,L ...
- python和python3
1 安装python和python3的方法 如果是python,那么直接python setup.py install; 如果是python3,那么直接python3 setup.py install ...
- jquery a
<!DOCTYPE html><html><head><script src="//ajax.googleapis.com/ajax/libs/jq ...