USACO Stock Market

洛谷 P2938 [USACO09FEB]股票市场Stock Market

洛谷传送门

JDOJ 2625: USACO 2009 Feb Gold 2.Stock Market

JDOJ传送门

题目描述

Despite their innate prudence, the cows took a beating in the home mortgage market and now are trying their hand at stocks. Happily, Bessie is prescient and knows not only today's S (2 <= S <= 50) stock prices but also the future stock prices for a total of D days (2 <= D <= 10).

Given the matrix of current and future stock prices on various days (1 <= PR_sd <= 1,000) and an initial M (1 <= M <= 200,000) units of money, determine an optimal buying and selling strategy in order to maximize the gain realized by selling stock on the final day. Shares must be purchased in integer multiples, and you need not spend all the money (or any money). It is guaranteed that you will not be able to earn a profit of more than 500,000 units of money.

Consider the example below of a bull (i.e., improving) market, the kind Bessie likes most. In this case, S=2 stocks and D=3 days. The cows have 10 units of money to invest.

|Stock|Today's price| Tomorrow's price| | Two days hence Stock | | | :-----------: | :-----------: | :-----------: | :-----------: | | AA | 10 | 15 | 15 | |BB | 13| 11|20 |

If money is to be made, the cows must purchase stock 1 on day 1. Selling stock 1 on day 2 and quickly buying stock 2 yields 4 money in the bank and one share of 2. Selling stock 2 on the final day brings in 20 money for a total of 24 money when the 20 is added to the bank.

输入格式

* Line 1: Three space-separated integers: S, D, and M

* Lines 2..S+1: Line s+1 contains the D prices for stock s on days 1..D: PR_sd

输出格式

* Line 1: The maximum amount of money possible to have after selling on day D.

题意翻译

题目描述

尽管奶牛天生谨慎,它们仍然在住房抵押信贷市场中大受打击,现在它们准备在股市上碰碰运气。贝西有内部消息,她知道 SS 只股票在今后 DD 天内的价格。

假设在一开始,她筹集了 MM 元钱,那么她该怎样操作才能赚到最多的钱呢?贝西在每天可以买卖多只股票,也可以多次买卖同一只股票,交易单位必须是整数,数量不限。举一个牛市的例子:

假设贝西有 10 元本金,股票价格如下:

股票 今天的价格 明天的价格 后天的价格
AA 10 15 15
BB 13 11 20

最赚钱的做法是:今天买入 AA 股 1 张,到明天把它卖掉并且买入 B 股 1 张,在后天卖掉 B股,这样贝西就有 24 元了。

输入格式

第一行:三个整数 S, D 和 M,2 ≤ S ≤ 502≤S≤50 ; 2 ≤ D ≤ 102≤D≤10 ; 1 ≤ M ≤ 2000001≤M≤200000

第二行到第 S + 1 行:第 i + 1 行有 D 个整数: P_{i;1}Pi;1 到 P_{i;D}Pi;D,表示第 ii 种股票在第一天到最后一天的售价,对所有1 ≤ j ≤ D1≤jD,1 ≤ Pi1≤*P**i;j ≤ 1000j*≤1000

输出格式

单个整数:表示奶牛可以获得的最大钱数,保证这个数不会超过 500000500000

输入输出样例

输入 #1复制

输出 #1复制

题解:

一道怪异的背包问题。

首先,我们能明确一点,就是DP的决策:

在第\(i\)天,有这么几种决策方式:

第一种:不买。

第二种:买完第二天卖。

第三种:买完在手中存几天后再卖。

但是第三种决策完全可以转化成第二种决策,原理是这样的:

对于一只股票,我们在第\(i\)天买第\(j\)天卖,其效果可以被看为在第\(i\)天买,第\(k\)天卖(\(i\le k\le j\)),当天再买回来,第\(j\)天卖。

这样的话,我们的第三种决策就可以变成:买完第二天卖,第二天再买回来。这就解决了DP的无后效性的问题。我们就可以开始设计DP过程了。

根据上面的分析,我们发现买股票变成了相邻两天的事情。那么,每一天对于每种物品只有两种选择:买还是不买。

诶?好像完全背包欸!

那么,对于每一天,我们都做一次完全背包:这个背包的体积就是当前的资金,每个物品的体积是当天的价值,价值为当天的价值减去前一天的价值。

所以我们可以跑\(d-1\)次完全背包,选出答案最大的一次。

代码如下:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
int s,d,m,maxx;
int map[60][20],dp[500001];
int main()
{
    scanf("%d%d%d",&s,&d,&m);
    for(int i=1;i<=s;i++)
        for(int j=1;j<=d;j++)
            scanf("%d",&map[i][j]);
    for(int i=2;i<=d;i++)
    {
        maxx=-1;
        memset(dp,0,sizeof(dp));
        for(int j=1;j<=s;j++)
            for(int k=map[j][i-1];k<=m;k++)
            {
                dp[k]=max(dp[k],dp[k-map[j][i-1]]+map[j][i]-map[j][i-1]);
                maxx=max(maxx,dp[k]);
            }
        m+=maxx;
    }
    printf("%d",m);
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/fusiwei/p/11609733.html
今日推荐