- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
java解法
- 解题思路
- 这段代码的目的是计算多种商品在多天的交易中,通过判断价格涨幅来获得的最大收益。对于每种商品,如果当天的价格高于前一天的价格,则可以通过出售商品获得收益,收益等于价格差乘以商品数量。最终,将所有商品的收益累加,得到总收益。
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int itemNum = sc.nextInt();
int dayCount = sc.nextInt();
int[] limits = new int[itemNum];
for (int i = 0; i < itemNum; i++) {
limits[i] = sc.nextInt();
}
int[][] priceMatrix = new int[itemNum][dayCount];
for (int i = 0; i < itemNum; i++) {
for (int j = 0; j < dayCount; j++) {
priceMatrix[i][j] = sc.nextInt();
}
}
System.out.println(getMaxProfit(itemNum, dayCount, limits, priceMatrix));
}
public static int getMaxProfit(int itemNum, int dayCount, int[] limits, int[][] priceMatrix) {
int profit = 0;
for (int i = 0; i < itemNum; i++) {
for (int j = 1; j < dayCount; j++) {
if (priceMatrix[i][j] > priceMatrix[i][j - 1]) {
profit += (priceMatrix[i][j] - priceMatrix[i][j - 1]) * limits[i];
}
}
}
return profit;
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
C++解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
C解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
JS解法
具体步骤如下:
输入解析:
第 1 行输入商品种类数。
第 2 行输入交易天数。
第 3 行输入每种商品的最大持有量(maxHoldings)。
接下来的输入是每种商品每天的价格表。
计算收益:
遍历每种商品的价格表。
如果某天的价格低于次日价格,则计算价格差乘以商品数量,作为该天的收益。
累加所有商品的收益,得到总收益。
const rl = require("readline").createInterface({
input: process.stdin,
output: process.stdout,
});
const records = [];
let productCount, tradeDays, maxHoldings;
rl.on("line", (line) => {
records.push(line);
if (records.length === 3) {
productCount = parseInt(records[0], 10);
tradeDays = parseInt(records[1], 10);
maxHoldings = records[2].split(" ").map(Number);
}
if (productCount && records.length === productCount + 3) {
const priceChanges = records.slice(3).map((entry) =>
entry.split(" ").map(Number)
);
console.log(
maximizeProfit(productCount, tradeDays, maxHoldings, priceChanges)
);
rl.close();
}
});
function maximizeProfit(products, days, holdings, priceTable) {
let profitSum = 0;
for (let idx = 0; idx < products; idx++) {
for (let day = 0; day < days - 1; day++) {
if (priceTable[idx][day] < priceTable[idx][day + 1]) {
profitSum +=
(priceTable[idx][day + 1] - priceTable[idx][day]) * holdings[idx];
}
}
}
return profitSum;
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: