uva1412 Fund Management
状压dp
要再看看 例题9-17
/*
// UVa1412 Fund Management
// 本程序会超时,只是用来示范用编码/解码的方法编写复杂状态动态规划的方法
// Rujia Liu
#include<cstdio>
#include<cstring>
#include<map>
using namespace std; const double INF = 1e30;
const int maxn = 8;
const int maxm = 100 + 5; map<int, double> d[maxm];
map<int, int> opt[maxm], prevv[maxm];
int m, n, s[maxn], k[maxn], kk;
double c, price[maxn][maxm];
char name[maxn][10]; int encode(int* portfolio) {
int h = 0;
for(int i = 0; i < n; i++) h = h * 9 + portfolio[i];
return h;
} int decode(int h, int* portfolio) {
int totlot = 0;
for(int i = n-1; i >= 0; i--) {
portfolio[i] = h % 9;
totlot += portfolio[i];
h /= 9;
}
return totlot;
} void update(int oldh, int day, int h, double v, int o) {
if(d[day].count(h) == 0 || v > d[day][h]) {
d[day][h] = v;
opt[day][h] = o;
prevv[day][h] = oldh;
}
} double dp() {
int portfolio[maxn];
d[0][0] = c;
for(int day = 0; day < m; day++)
for(map<int, double>::iterator it = d[day].begin(); it != d[day].end(); it++) {
int h = it->first;
double v = it->second;
int totlot = decode(h, portfolio); update(h, day+1, h, v, 0); // HOLD
for(int i = 0; i < n; i++) {
if(portfolio[i] < k[i] && totlot < kk && v >= price[i][day] - 1e-3) {
portfolio[i]++;
update(h, day+1, encode(portfolio), v - price[i][day], i+1); // BUY
portfolio[i]--;
}
if(portfolio[i] > 0) {
portfolio[i]--;
update(h, day+1, encode(portfolio), v + price[i][day], -i-1); // SELL
portfolio[i]++;
}
}
}
return d[m][0];
} void print_ans(int day, int h) {
if(day == 0) return;
print_ans(day-1, prevv[day][h]);
if(opt[day][h] == 0) printf("HOLD\n");
else if(opt[day][h] > 0) printf("BUY %s\n", name[opt[day][h]-1]);
else printf("SELL %s\n", name[-opt[day][h]-1]);
} int main() {
int kase = 0;
while(scanf("%lf%d%d%d", &c, &m, &n, &kk) == 4) {
if(kase++ > 0) printf("\n");
for(int i = 0; i < n; i++) {
scanf("%s%d%d", name[i], &s[i], &k[i]);
for(int j = 0; j < m; j++) { scanf("%lf", &price[i][j]); price[i][j] *= s[i]; }
}
for(int i = 0; i <= m; i++) { d[i].clear(); opt[i].clear(); prevv[i].clear(); } double ans = dp();
printf("%.2lf\n", ans);
print_ans(m, 0);
}
return 0;
}
*/ #include<cstdio>
#include<cstring>
#include<vector>
#include<map>
using namespace std; const double INF = 1e30;
const int maxn = ;
const int maxm = + ;
const int maxstate = ; int m, n, s[maxn], k[maxn], kk;
double c, price[maxn][maxm];
char name[maxn][]; double d[maxm][maxstate];
int opt[maxm][maxstate], prevv[maxm][maxstate]; int buy_next[maxstate][maxn], sell_next[maxstate][maxn];
vector<vector<int> > states;
map<vector<int>, int> ID; void dfs(int stock, vector<int>& lots, int totlot) {
if(stock == n) {
ID[lots] = states.size();
states.push_back(lots);
}
else for(int i = ; i <= k[stock] && totlot + i <= kk; i++) {
lots[stock] = i;
dfs(stock+, lots, totlot + i);
}
} void init() {
vector<int> lots(n);
states.clear();
ID.clear();
dfs(, lots, );
for(int s = ; s < states.size(); s++) {
int totlot = ;
for(int i = ; i < n; i++) totlot += states[s][i];
for(int i = ; i < n; i++) {
buy_next[s][i] = sell_next[s][i] = -;
if(states[s][i] < k[i] && totlot < kk) {
vector<int> newstate = states[s];
newstate[i]++;
buy_next[s][i] = ID[newstate];
}
if(states[s][i] > ) {
vector<int> newstate = states[s];
newstate[i]--;
sell_next[s][i] = ID[newstate];
}
}
}
} void update(int day, int s, int s2, double v, int o) {
if(v > d[day+][s2]) {
d[day+][s2] = v;
opt[day+][s2] = o;
prevv[day+][s2] = s;
}
} double dp() {
for(int day = ; day <= m; day++)
for(int s = ; s < states.size(); s++) d[day][s] = -INF; d[][] = c;
for(int day = ; day < m; day++)
for(int s = ; s < states.size(); s++) {
double v = d[day][s];
if(v < -) continue; update(day, s, s, v, ); // HOLD
for(int i = ; i < n; i++) {
if(buy_next[s][i] >= && v >= price[i][day] - 1e-)
update(day, s, buy_next[s][i], v - price[i][day], i+); // BUY
if(sell_next[s][i] >= )
update(day, s, sell_next[s][i], v + price[i][day], -i-); // SELL
}
}
return d[m][];
} void print_ans(int day, int s) {
if(day == ) return;
print_ans(day-, prevv[day][s]);
if(opt[day][s] == ) printf("HOLD\n");
else if(opt[day][s] > ) printf("BUY %s\n", name[opt[day][s]-]);
else printf("SELL %s\n", name[-opt[day][s]-]);
} int main() {
int kase = ;
while(scanf("%lf%d%d%d", &c, &m, &n, &kk) == ) {
if(kase++ > ) printf("\n"); for(int i = ; i < n; i++) {
scanf("%s%d%d", name[i], &s[i], &k[i]);
for(int j = ; j < m; j++) { scanf("%lf", &price[i][j]); price[i][j] *= s[i]; }
}
init(); double ans = dp();
printf("%.2lf\n", ans);
print_ans(m, );
}
return ;
}
uva1412 Fund Management的更多相关文章
- 【暑假】[深入动态规划]UVa 1412 Fund Management
UVa 1412 Fund Management 题目: UVA - 1412 Fund Management Time Limit: 3000MS Memory Limit: Unknown ...
- UVa 1412 Fund Management (预处理+状压DP)
题意:题意很难说清楚自己看原文,链接:UVa 1412 Fund Management 析:总体来说如果没有超时的话,这个题不是特别难,但是这个题很容易超时,主要是体现在状态转移时,很容易想到状态方程 ...
- UVa 1412 - Fund Management(状压DP + 预处理)
链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...
- UVA 1412 Fund Management (预处理+状压dp)
状压dp,每个状态可以表示为一个n元组,且上限为8,可以用一个九进制来表示状态.但是这样做用数组开不下,用map离散会T. 而实际上很多九进制数很多都是用不上的.因此类似uva 1601 Mornin ...
- POJ3570 Fund Management 动态规划
题目大意 Frank从个人投资者获得了c美元的资金,可用于m天的投资.Frank可以对n(n<=8)支股票进行投资.对于每一支股票:都有一个交易上限si,表示一天最多能交易的股数:还有一个上限k ...
- 近期做的一些DP
UVa 1625 color length https://blog.csdn.net/Dylan_Frank/article/details/52261424 https://www.cnblogs ...
- 7.25 9figting!
TEXT 87 Fund management基金管理 A Miller's tale 米勒传奇(陈继龙编译) Dec 7th 2006 From The Economist print edit ...
- 7.25 8figting!
TEXT 87 Fund management基金管理 A Miller's tale 米勒传奇(陈继龙编译) Dec 7th 2006 From The Economist print edit ...
- DP 题集 2
关于 DP 的一些题目 String painter 先区间 DP,\(dp[l][r]\) 表示把一个空串涂成 \(t[l,r]\) 这个子串的最小花费.再考虑 \(s\) 字符串,\(f[i]\) ...
随机推荐
- UI:KVO、KVC
什么是KVC 什么是 KVO ? KVC:(NSKey ValueCoding)”键-值 编码“是一种间接的访问对象属性(字符串表征)的机制.对象的属性都可以通过使用KVC机制用相同的方式访问.我们 ...
- 算法练习--LeetCode--17. Letter Combinations of a Phone Number
Letter Combinations of a Phone NumberMedium Given a string containing digits from 2-9 inclusive, ret ...
- bzoj 3513: [MUTC2013]idiots【生成函数+FFT】
想了好长时间最后发现真是石乐志 第一反应就是两边之和大于第三边,但是这个东西必须要满足三次-- 任意的两边之和合通过生成函数套路+FFT求出来(记得去掉重复选取的),然后这任意两边之和大于任意第三边可 ...
- 你真的懂了redis的数据结构吗?redis内部数据结构和外部数据结构揭秘
原文链接:https://mp.weixin.qq.com/s/hKpAxPE-9HJgV6GEdV4WoA Redis有哪些数据结构? 字符串String.字典Hash.列表List.集合Set.有 ...
- 鸟哥私房菜基础篇:Linux是什么习题
猫宁!!! 参考链接:http://cn.linux.vbird.org/linux_basic/0110whatislinux.php#ex 鸟哥是为中国信息技术发展做出巨大贡献的人. 1-你在你的 ...
- 跟我一起玩Win32开发(20):浏览文件夹
最近忙于一些相当无聊的事情,还没忙完,不过,博客还是要写的,不然我头顶上会多了几块砖头. 在上一篇博文中,我们浏览了文件,今天我们也浏览一下目录,如何? 浏览目录我们同样有两个规矩,用托管类库的我就不 ...
- pika消息中间件模块
参考: http://www.rabbitmq.com/tutorials/tutorial-one-python.html http://www.rabbitmq.com/tutorials/tut ...
- Hdu 2089 不要62 (数位dp入门题目)
题目链接: Hdu 2089 不要62 题目描述: 给一个区间 [L, R] ,问区间内不含有4和62的数字有多少个? 解题思路: 以前也做过这个题目,但是空间复杂度是n.如果数据范围太大就GG了.今 ...
- Educational Codeforces Round 18 A
Description There are n cities situated along the main road of Berland. Cities are represented by th ...
- LIS(变形) HDOJ 5489 Removed Interval
题目传送门 题意:求删掉连续L长度后的LIS 分析:记rdp[i]表示以a[i]为开始的LIS长度,用nlogn的办法,二分查找-a[i].dp[i]表示以a[i]为结尾并且删去[i-L-1, i-1 ...