UVa 1412 Fund Management

题目:

UVA - 1412

Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu

Submit Status

Description

 

Frank is a portfolio manager of a closed-end fund for Advanced Commercial Markets (ACM ). Fund collects money (cash) from individual investors for a certain period of time and invests cash into various securities in accordance with fund's investment strategy. At the end of the period all assets are sold out and cash is distributed among individual investors of the fund proportionally to their share of original investment.

Frank manages equity fund that invests money into stock market. His strategy is explained below.

Frank's fund has collected c<tex2html_verbatim_mark> US Dollars (USD) from individual investors to manage them for m<tex2html_verbatim_mark> days. Management is performed on a day by day basis. Frank has selected n<tex2html_verbatim_mark> stocks to invest into. Depending on the overall price range and availability of each stock, a lot size was chosen for each stock -- the number of shares of the stock Frank can buy or sell per day without affecting the market too much by his trades. So, if the price of the stock is pi<tex2html_verbatim_mark> USD per share and the lot size of the corresponding stock is si<tex2html_verbatim_mark> , then Frank can spend pisi<tex2html_verbatim_mark> USD to buy one lot of the corresponding stock for his fund if the fund has enough cash left, thus decreasing available cash in the fund. This trade is completely performed in one day.

When price of the stock changes to p'i<tex2html_verbatim_mark> later, then Frank can sell this lot for p'isi<tex2html_verbatim_mark> USD, thus increasing available cash for further trading. This trade is also completely performed in one day. All lots of stocks that are held by the fund must be sold by the end of the fund's period, so that at the end (like at the beginning) the fund is holding only cash.

Each stock has its own volatility and risks, so to minimize the overall risk of the fund, for each stock there is the maximum number of lots ki<tex2html_verbatim_mark> that can be held by the fund at any given day. There is also the overall limit k<tex2html_verbatim_mark> on the number of lots of all stocks that the fund can hold at any given day.

Any trade to buy or sell one lot of stock completely occupies Frank's day, and thus he can perform at most one such trade per day. Frank is not allowed to buy partial lots if there is not enough cash in the fund for a whole lot at the time of purchase.

Now, when fund's period has ended, Frank wants to know what is the maximum profit he could have made with this strategy having known the prices of each stock in advance. Your task is to write a program to find it out.

It is assumed that there is a single price for each stock for each day that Frank could have bought or sold shares of the stock at. Any overheads such as fees and commissions are ignored, and thus cash spent to buy or gained on a sell of one lot of stock is exactly equal to its price on this day multiplied by the number of shares in a lot.

Input

Input consists on several datasets. The first line of each dataset contains four numbers -- c<tex2html_verbatim_mark> , m<tex2html_verbatim_mark> , n<tex2html_verbatim_mark> , and k<tex2html_verbatim_mark> . Here c<tex2html_verbatim_mark>(0.01c100000000.00)<tex2html_verbatim_mark> is the amount of cash collected from individual investors up to a cent (up to two digits after decimal point); m<tex2html_verbatim_mark>(1m100)<tex2html_verbatim_mark> is the number of days in the fund's lifetime; n<tex2html_verbatim_mark>(1n8)<tex2html_verbatim_mark> is the number of stocks selected by Frank for trading;k<tex2html_verbatim_mark>(1k8)<tex2html_verbatim_mark> is the overall limit on the number of lots the fund can hold at any time.

The following 2n<tex2html_verbatim_mark> lines describe stocks and their prices with two lines per stock.

The first line for each stock contains the stock name followed by two integer numbers si<tex2html_verbatim_mark> and ki<tex2html_verbatim_mark> . Here si<tex2html_verbatim_mark>(1si1000000)<tex2html_verbatim_mark> is the lot size of the given stock, and ki<tex2html_verbatim_mark>(1kik)<tex2html_verbatim_mark> is the number of lots of this stock the fund can hold at any time. Stock name consists of 1 to 5 capital Latin letters from `` A" to `` Z". All stock names in the input file are distinct.

The second line for each stock contains m<tex2html_verbatim_mark> decimal numbers separated by spaces that denote prices of the corresponding stock for each day in the fund's lifetime. Stock prices are in range from 0.01 to 999.99 (inclusive) given up to a cent (up to two digits after decimal point).

Cash and prices in the input file are formatted as a string of decimal digits, optionally followed by a dot with one or two digits after a dot.

Output

For each dataset, write to the output file m + 1<tex2html_verbatim_mark> lines. Print a blank line between datasets.

On the first line write a single decimal number -- the precise value for the maximal amount of cash that can be collected in the fund by the end of its period. The answer will not exceed 1 000 000 000.00. Cash must be formatted as a string of decimal digits, optionally followed by a dot with one or two digits after a dot.

On the following m<tex2html_verbatim_mark> lines write the description of Frank's actions for each day that he should have made in order to realize this profit. Write BUY followed by a space and a stock name for buying a stock. Write SELL followed by a space and a stock name for selling a stock. Write HOLD if nothing should have been done on that day.

Sample Input

144624.00 9 5 3
IBM 500 3
97.27 98.31 97.42 98.9 100.07 98.89 98.65 99.34 100.82
GOOG 100 1
467.59 483.26 487.19 483.58 485.5 489.46 499.72 505 504.28
JAVA 1000 2
5.54 5.69 5.6 5.65 5.73 6 6.14 6.06 6.06
MSFT 250 1
29.86 29.81 29.64 29.93 29.96 29.66 30.7 31.21 31.16
ORCL 300 3
17.51 17.68 17.64 17.86 17.82 17.77 17.39 17.5 17.3

Sample Output

151205.00
BUY GOOG
BUY IBM
BUY IBM
HOLD
SELL IBM
BUY MSFT
SELL MSFT
SELL GOOG
SELL IBM

思路:

一共有n天,把天数看作阶段,对于每一天,我们可以选择出手或买进一手股票,在最后一天必须将股票全部出手且求解最大钱数。

可以这样定义d[i][s]:表示第i天手中股票的状态为s时手中的最大钱数,采用刷表法更新d[i+1][s'] ,s'表示s经过出手或买进转移的状态。

问题就变成了如何表示状况s?采用n元组的形式。

但不能将一个n元组表示进d数组,这里的方法是离线dfs出全部状态并分别编号,得出状态与相连的关系buy_next与sell_next。那么d中的状态s就可以用一个整数表示了。

另外输出也有一定的技巧,用到了prev 与 opt 数组,并用正负区别操作。

代码(from Rujia Liu):

 #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], prev[maxm][maxstate]; //配合输出print_ans int buy_next[maxstate][maxn], sell_next[maxstate][maxn];
vector<vector<int> > states;
//states[i]代表一个标号为i的n元组 组信息用vector保存 //一个n元组带包手持各股票的数目
map<vector<int>, int> ID; //ID 是vector到序号的映射 void dfs(int stock, vector<int>& lots, int totlot) { //dfs序构造states
if(stock == n) { //新的n元组构造完成
ID[lots] = states.size(); //ID
states.push_back(lots); //push
}
else for(int i = ; i <= k[stock] && totlot + i <= kk; i++) { //在满足k[]与K的限制下如果可行则dfs下一stock
lots[stock] = i;
dfs(stock+, lots, totlot + i); //回溯 写法
}
} void init() { //利用states离线建立状态之间的关系
vector<int> lots(n);
states.clear(); //clear1
ID.clear(); //clear2
dfs(, lots, ); //return states
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++) { //枚举在状态中改变的股票i
buy_next[s][i] = sell_next[s][i] = -; //初值-1
if(states[s][i] < k[i] && totlot < kk) { //如果buy可行
vector<int> newstate = states[s];
newstate[i]++;
buy_next[s][i] = ID[newstate];
}
if(states[s][i] > ) { //如果sell可行
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) { //刷表法 更新
//在第day天 在进行操作后 状况s转移到状况s2 转移后手中钱数为v
//对|o|进行操作 //opt的正负用以区分操作 buy || sell
if(v > d[day+][s2]) {
d[day+][s2] = v;
opt[day+][s2] = o; //: 得出 [][] 的最优操作
prev[day+][s2] = s; //: 得出 [][] 的最优前状况
}
} double dp() {
for(int day = ; day <= m; day++)
for(int s = ; s < states.size(); s++) d[day][s] = -INF //边界设定 d[][] = c; //第0天手持0手股票 手中有c的钱数
for(int day = ; day < m; day++) //枚举天数
for(int s = ; s < states.size(); s++) { //枚举手中股票的状态
double v = d[day][s];
if(v < -) continue; //return update(day, s, s, v, ); // HOLD
for(int i = ; i < n; i++) {
if(buy_next[s][i] >= && v >= price[i][day] - 1e-) //s状态下要买股票i
update(day, s, buy_next[s][i], v - price[i][day], i+); // BUY
if(sell_next[s][i] >= ) //s状态下要卖股票i
update(day, s, sell_next[s][i], v + price[i][day], -i-); // SELL
}
}
return d[m][]; //到了第m天 手中没有股票 //反对DP原问题的最大值
} void print_ans(int day, int s) { //根据prev与opt递归输出解
if(day == ) return;
print_ans(day-, prev[day][s]);
if(opt[day][s] == ) printf("HOLD\n"); //==0
else if(opt[day][s] > ) printf("BUY %s\n", name[opt[day][s]-]); // >0
else printf("SELL %s\n", name[-opt[day][s]-]); //<0
} 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 ;
}

【暑假】[深入动态规划]UVa 1412 Fund Management的更多相关文章

  1. UVa 1412 Fund Management (预处理+状压DP)

    题意:题意很难说清楚自己看原文,链接:UVa 1412 Fund Management 析:总体来说如果没有超时的话,这个题不是特别难,但是这个题很容易超时,主要是体现在状态转移时,很容易想到状态方程 ...

  2. UVa 1412 - Fund Management(状压DP + 预处理)

    链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem& ...

  3. UVA 1412 Fund Management (预处理+状压dp)

    状压dp,每个状态可以表示为一个n元组,且上限为8,可以用一个九进制来表示状态.但是这样做用数组开不下,用map离散会T. 而实际上很多九进制数很多都是用不上的.因此类似uva 1601 Mornin ...

  4. uva1412 Fund Management

    状压dp 要再看看  例题9-17 /* // UVa1412 Fund Management // 本程序会超时,只是用来示范用编码/解码的方法编写复杂状态动态规划的方法 // Rujia Liu ...

  5. 【暑假】[深入动态规划]UVa 1628 Pizza Delivery

    UVa 1628 Pizza Delivery 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=51189 思路:    ...

  6. 【暑假】[深入动态规划]UVa 1380 A Scheduling Problem

     UVa 1380 A Scheduling Problem 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=41557 ...

  7. 【暑假】[深入动态规划]UVa 12170 Easy Climb

    UVa 12170 Easy Climb 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=24844 思路:  引别人一 ...

  8. 【暑假】[深入动态规划]UVa 10618 The Bookcase

    UVa 12099  The Bookcase 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=42067 思路:    ...

  9. 【暑假】[深入动态规划]UVa 10618 Fun Game

    UVa 10618 Fun Game 题目: http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=36035 思路:   一圈人围坐 ...

随机推荐

  1. weak_ptr的一点认识

    近期在补充和梳理C++方面的知识的时候,遇到了WeakPtr这个概念和用法,不甚明白,Google出了一堆文字,包括Boost的shared_ptr和weak_ptr的比较,以及其他一些博客里面给的例 ...

  2. eclipse代码自动提示功能设置

    一 般默认情况下,Eclipse ,MyEclipse的代码提示功能是比Microsoft Visual Studio的差很多的,主要是Eclipse ,MyEclipse本身有很多选项是默认关闭的, ...

  3. Maven打包时囊括本地依赖的jar包

    在开发中,偶尔会遇到一个问题:某些比较冷门的包,maven服务器上没有,而我们又必须用,通常情况下会在项目中建立一个lib文件夹.将这些包copy进去并加入buildpath,开发就可以继续了,如下图 ...

  4. Top命令内存占用剖析

    原文: http://yalung929.blog.163.com/blog/static/203898225201212981731971/ 引 言: top命令作为Linux下最常用的性能分析工具 ...

  5. 64位ubuntu安装WPS

    http://jingyan.baidu.com/article/d3b74d64afd96f1f77e609a3.html http://sixipiaoyang.blog.163.com/blog ...

  6. 捕获Java线程池执行任务抛出的异常

    捕获Java线程池执行任务抛出的异常Java中线程执行的任务接口java.lang.Runnable 要求不抛出Checked异常, public interface Runnable { publi ...

  7. 【HDOJ】2385 Stock

    水题,逆向做+优先级队列. /* 2385 */ #include <iostream> #include <sstream> #include <string> ...

  8. C++ volatile的作用

    volatile的作用     2006-10-23 13:44:21 大 中 小 关键在于两个地方:     1. 编译器的优化 (请高手帮我看看下面的理解) 在本次线程内, 当读取一个变量时,为提 ...

  9. poj 2635 The Embarrassed Cryptographer(数论)

    题目:http://poj.org/problem?id=2635 高精度求模  同余模定理. 题意: 给定一个大数K,K是两个大素数的乘积的值.再给定一个int内的数L 问这两个大素数中最小的一个是 ...

  10. extends:类似于java中的继承特征,extends="struts-default"

    extends:类似于java中的继承特征,extends="struts-default"就是继承struts-default.xml,它里面定义了许多跳转类型.拦截器等一些常用 ...