AcWing 332. 股票交易
2021-03-17 23:25
标签:sizeof memset cstring 计划 print 表示 wing mat ref 大型补档计划 题目链接 \(f[i][j]\) 表示前 \(i\) 天,手里有 \(j\) 个股票挣得最多钱 买股票。枚举 \(u \(f[i][j] = max(f[u][k] - (j - k) * AP[i]) = max(f[u][k] + k * AP[i]) - j * AP[i]\) 满足 \(j - AS[i] 设 \(pre[k]\) 为 \(f[1 ~ i - W][k]\) 的前缀 \(Max\) 维护即可。 剩下的用单调队列。 维护 \(pre[k] - k * AP[i]\) 递减的序列即可。 卖股票\(P\),枚举 \(u \(f[i][j] = f[u][k] + (k - j) * BP[i] = max(f[u][k] + k * BP[i]) - j * BP[i]\) 维护 \(pre[k] + k * AP[i]\) 递减的序列即可。 AcWing 332. 股票交易 标签:sizeof memset cstring 计划 print 表示 wing mat ref 原文地址:https://www.cnblogs.com/dmoransky/p/12380563.html#include