木板最优切割利润最大_最多进行K笔交易的股票最大买卖利润

木板最优切割利润最大

This is a very popular interview problem to find maximum profit in stock buying and selling with at most K transactions. This problem has been featured in the interview rounds of Amazon.

这是一个非常受欢迎的面试问题,目的是在最多进行K笔交易时,在股票买卖中获得最大利润 。 亚马逊的采访回合中已经提到了这个问题。

Problem statement:

问题陈述:

In stock market, a person buys a stock and sells it on some future date. Given the stock prices of N days in form of an array Amount and a positive integer K, find out the maximum profit a person can make in at most K transactions. A transaction is buying the stock on some day and selling the stock at some other future day and new transaction can start only when the previous transaction has been completed.

在股票市场中,一个人购买股票并在将来的某个日期将其出售。 给定N天的股票价格( 数量为数组)和正整数K ,找出一个人最多可以进行K笔交易的最大利润。 某笔交易在某天买入股票,而在将来的另一天卖出股票,只有在上一笔交易完成后才能开始新交易。

    Input:
K=3
N=7
Stock prices on N days:
10 25 38 40 45 5 58
Output:
88

Example:

例:

    Number of maximum transactions: 3
Total number of days, N: 7
To achieve maximum profit:
Stock bought at day1    (-10)
Stock sold at day5      (+45)
Stock bought at day6    (-5)
Stock sold at day7      (+58)
Total profit = 88
Total transactions made = 2

Explanation:

说明:

Let there are N number of days for transactions, say x1, x2, ..., xn

设交易的天数为N ,例如x 1 ,x 2 ,...,x n

Now for any day xi

现在任何一天x

  1. Don't do any transaction on the day xi

    x 当天不做任何交易

  2. Transact on day xi, i.e., buy stock on some day xj and sell on day xi where j<i and i,j Є N

    一天的Transact X I,即,在某些天×j和卖出日股购买X I其中j <iI,JЄñ

Total number of transactions can be made at most = K

最多可以进行的交易总数= K

Now we can formulate the maximum profit case using above two condition.

现在,我们可以使用以上两个条件来制定最大获利情况。

Let,

让,

    f(t,i)=maximum profit upto ith day and t transactions

Considering the above two facts about xi

考虑关于x i的上述两个事实

    f(t,i)=f(t,i-1)  if there is no transaction made on day xi ...(1)
Max(f(t-1,j)+amount[i]-amount[j])       
where j<i and i,j Є N if there is transaction  on day xi ...(2)
Obviously, to maximize the profit we would take the maximum of (1)  and (2)
Number of maximum transactions: 3
Total number of days, N: 7
Stock prices on the days are:
10 25 38 40 45 5 58

Below is a part of recursion tree which can show that how many overlapping sub problems there will be.

下面是递归树的一部分,它可以显示将有多少个重叠的子问题。

recusrion tree 1


Figure 1: Partial recursion tree to show overlapping sub-problems

图1:部分递归树显示重叠的子问题

So we need dynamic programming...

所以我们需要动态编程...

Problem Solution

问题方案

Recursive Algorithm:

递归算法:

    Function(t, i): //f(t, i)
If i=0
f(t, i)=0
If t=0
f(t, i)=0
f(t, i)= f(t, i-1); //no transaction on day xi
For j =0: i
Find max(f(t-1,j) + amount(i)- amount(j)
End For
If the maximum found > f(t, i)
update f(t, i)
End IF
Return f(t, i)

Conversion to DP

转换为DP

    For tabulation we need a 2D array, DP[k+1][n] to store f(t,i)
Base case,
for i 0 to k,   DP[i][0]=0 //no profit on 0th day
for i 0 to n-1,   DP[0][j]=0 //no profit on 0 transaction
To fill the higher values,
for t=1 to k
for i =1 to n-1
DP[t][i]=DP[t][i-1]
for j= 0 to i-1 //buying on jth day and selling on ith day   
DP[t][i]=max(DP[t][i],DP[t-1][j]+ amount[i] –amount[j])
End for
End for
End for
Result would be f(k,n) that is value of DP[k][n-1]

Initial DP table

初始DP表

    DP[4][7] //K=3, N=7

DP Table

Try yourself to compute the DP table manually following the above algorithm and find out the result. Take some small example if necessary.

尝试按照上述算法手动计算DP表并找出结果。 如有必要,举一些小例子。

C++ implementation:

C ++实现:

#include <bits/stdc++.h>
using namespace std;
int Max_profit(vector<int> amount, int n, int k)
{
int DP[k + 1][n];
memset(DP, 0, sizeof(DP));
//on 0th day
for (int i = 0; i <= k; i++)
DP[i][0] = 0;
//on 0 transaction made
for (int i = 0; i <= n; i++)
DP[0][i] = 0;
for (int t = 1; t <= k; t++) {
for (int i = 1; i < n; i++) {
DP[t][i] = DP[t][i - 1];
int maxV = INT_MIN;
//buying on jth day and selling on ith day
for (int j = 0; j < i; j++) {
if (maxV < DP[t - 1][j] + amount[i] - amount[j])
maxV = DP[t - 1][j] + amount[i] - amount[j];
}
if (DP[t][i] < maxV)
DP[t][i] = maxV;
}
}
return DP[k][n - 1];
}
int main()
{
int n, item, k;
cout << "Enter maximum no of transactions:\n";
cin >> k;
cout << "Enter number of days\n";
cin >> n;
vector<int> amount;
cout << "Enter stock values on corresponding days\n";
for (int j = 0; j < n; j++) {
scanf("%d", &item);
amount.push_back(item);
}
cout << "Maximum profit that can be achieved: " << Max_profit(amount, n, k) << endl;
return 0;
}

Output

输出量

Enter maximum no of transactions:
3
Enter number of days
7
Enter stock values on corresponding days
10 25 38 40 45 5 58
Maximum profit that can be achieved: 88

翻译自: https://www.includehelp.com/icp/maximum-profit-in-stock-buy-and-sell-with-at-most-k-transaction.aspx

木板最优切割利润最大

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545951.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

禁止访问磁盘的注册表

百度的了一个禁止访问磁盘的注册表问题怎么禁止访问磁盘&#xff0c;手动操作就会&#xff0c;可是有好几十台啊。手动搞&#xff0c;那个累啊。求个高手&#xff0c;帮我弄个注册表或者BAT文件执行都可以&#xff0c;禁止访问D盘跟E盘。网上找了很多资料&#xff0c;都叫用工具…

C语言文本文件与二进制文件转换

本程序要自己创建个文本格式的输入文件a1.txt&#xff0c;编译后能将文本文件前255字节以内的字符转换成相应的AscII码值的二进制表示&#xff0c;并存入输出文件a2.txt中。然后再将二进制文件还原并存入a3.txt文件。实现文件之间的转换。 具体代码如下&#xff1a; #include …

[数据库]Oracle和mysql中的分页总结

Mysql中的分页物理分页•在sql查询时&#xff0c;从数据库只检索分页需要的数据•通常不同的数据库有着不同的物理分页语句•mysql物理分页&#xff0c;采用limit关键字•例如&#xff1a;检索11-20条 select * from user limit 10,10 ;* 每次只查询10条记录.当点击下一页的时候…

List 集合去重的 3 种方法

问题由来在实际开发的时候&#xff0c;我们经常会碰到这么一个困难&#xff1a;一个集合容器里面有很多重复的对象&#xff0c;里面的对象没有主键&#xff0c;但是根据业务的需求&#xff0c;实际上我们需要根据条件筛选出没有重复的对象。比较暴力的方法&#xff0c;就是根据…

c printf 段错误_错误:预期声明在C中的printf之前指定

c printf 段错误The main cause of this error is - missing opening curly brace ({), before the printf() function. 导致此错误的主要原因是-在printf()函数之前缺少打开的花括号( { )。 Example: 例&#xff1a; #include <stdio.h>int main(void)printf("He…

常用的60招电脑操作

1、如果同时有多个窗口打开&#xff0c;想要关闭的话&#xff0c;可以按住shift不放然后点击窗口右上角的关闭图标。2、在保存网页前&#xff0c;可以按一下"ESC"键(或脱机工作)再保存&#xff0c;这样保存很快 3、用电脑听CD可以不用任何的播放软件&#xff0c;把音…

C语言入门——排序

排序的方法有很多种比较常见的便为&#xff1a;冒泡排序、选择排序、插入排序、快速排序。 今天我们就围绕着四种排序来说&#xff0c;如果有兴趣的话可以去查找一下其他排序。 在排序这方面我们主要讨论&#xff1a; 稳定&#xff1a;如果a原本在b前面&#xff0c;而ab&…

【转】eclipse技巧1

2019独角兽企业重金招聘Python工程师标准>>> 俗话说的好啊&#xff0c;“工于利启事&#xff0c;必先善其器”&#xff0c;如果说你的编程功底是一个枪法的话&#xff0c;那么强大的eclipse就是android战士们最好的武器。 这里&#xff0c;我们来总结eclipse的使用技…

Java LinkedList公共int indexOf(Object o)方法(带示例)

LinkedList公共int indexOf(Object o)方法 (LinkedList public int indexOf(Object o) method) This method is available in package java.util.LinkedList.indexOf(Object o). 软件包java.util.LinkedList.indexOf(Object o)中提供了此方法。 This method is used to return …

定时任务最简单的3种实现方法(超好用)

这是我的第 86 篇原创文章作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;定时任务在实际的开发中特别常见&#xff0c;比如电商平台 30 分钟后自动取消未支付的订单&#x…

C语言入门基础——Brute-Force算法

Brute-Force算法的基本思想是&#xff1a; 1) 从目标串s 的第一个字符起和模式串t的第一个字符进行比较&#xff0c;若相等&#xff0c;则继续逐个比较后续字符&#xff0c;否则从串s 的第二个字符起再重新和串t进行比较。 2) 依此类推&#xff0c;直至串t 中的每个字符依次和…

MFC:2个重载中没有一个可以转换所有参数类型

MFC:2个重载中没有一个可以转换所有参数类型用VS2008&#xff0c;在使用AfxMessageBox函数的时候出现以上错误&#xff0c;代码如下&#xff1a;AfxMessageBox("Here is the information!",MB_ICONINFORMATION);解决办法一&#xff1a;一、 AfxMessageBox(_T("H…

SQL随机生成6位数字

SELECT RIGHT(100000000 CONVERT(bigint, ABS(CHECKSUM(NEWID()))), 6)

为什么劝你放弃Maven?看看Gradle的这些优点就知道了

相信使用Java的同学都用过Maven&#xff0c;这是一个非常经典好用的项目构建工具。但是如果你经常使用Maven&#xff0c;可能会发现Maven有一些地方用的让人不太舒服&#xff1a;Maven的配置文件是XML格式的&#xff0c;假如你的项目依赖的包比较多&#xff0c;那么XML文件就会…

解决问题手册(QT+C++ )

目录前言QTQT介绍QMutexLockerQTimer与事件循环C介绍工作日记介绍2022前言 刚刚参加工作&#xff0c;感觉自己不懂的地方很多。所以我希望做一篇长时间的文章分享&#xff0c;把我工作中遇到的问题还有解决问题的思路都记下来。时间长了它是不是就变成了一本解决问题手册&…

css中的换行符_如何使用CSS防止项目列表中的换行符?

css中的换行符Introduction: 介绍&#xff1a; Dealing with various items in CSS sometimes pose very different problems. The problem could be anything, it could be related to positioning, arrangement, and whatnot, therefore all such kinds of problems require…

Java中的一些坑,汇总篇(2万字)

Photo Drew Farwell 文 | 常意1.前言

VB.NET判断一个路径的文件是否存在

使用文件系统操控文件和路径的能力是任何程序的一个重要功能。在本文所介绍的技巧中&#xff0c;我们将检测VB.NET 如何与文件系统进行作用。通过现有类、方法和属性示例给出简便方法完成必须的功能。为了能够操作文件系统&#xff0c;我们需要用到System.IO命名空间。因此&…

6款html5模板下载

http://www.100sucai.com/code/1316.htmlhttp://www.100sucai.com/code/1318.htmlhttp://www.100sucai.com/code/1310.htmlhttp://www.100sucai.com/code/1309.htmlhttp://www.100sucai.com/code/1303.htmlhttp://www.100sucai.com/code/1301.html转载于:https://blog.51cto.co…

QMutexLocker用法

QMutexLocker 详细描述:QMutexLocker类是一个方便的类&#xff0c;它简化了锁定和解锁互斥锁。在复杂函数和语句或异常处理代码中对QMutex进行锁定和解锁是容易出错的&#xff0c;很难调试。在这种情况下可以使用QMutexLocker来确保互斥锁的状态总是定义良好的。应该在需要锁定…