输出:
37
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
python解法
- 解题思路:
- 这段代码的目标是处理一个整数数组,并通过某种规则计算一个分数(score)。具体过程如下:
动态规划数组 dp
dp[i] 表示第 i 个位置的累计和,但是有一个上限,不能超过 100。
如果累计和达到 100,就停止进一步累加。
延迟数组 delay
delay[i] 通过调用 calculate_delay 函数计算得到,表示当前位置的累积延迟。
分数数组 score
score[i] 是当前位置的分数,通过调用 calculate_score 函数计算。
计算公式是 dp[i] - delay[i]。
逻辑流程
从数组的第一个元素开始,逐步计算 dp、delay 和 score。
如果 dp 达到上限 100,则停止计算。
最终返回 score 数组中的最大值。
def calculate_delay(dp, delay, i):
return delay[i - 1] + dp[i - 1]
def calculate_score(dp, delay, i):
return dp[i] - delay[i]
def process_array(arr):
n = len(arr)
dp = [0] * n
delay = [0] * n
score = [0] * n
dp[0] = arr[0]
score[0] = arr[0]
for i in range(1, n):
dp[i] = min(100, dp[i - 1] + arr[i])
delay[i] = calculate_delay(dp, delay, i)
score[i] = calculate_score(dp, delay, i)
if dp[i] >= 100:
break
return max(score)
def getResult(arr):
result = process_array(arr)
print(result)
arr = list(map(int, input().split()))
getResult(arr)
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
java解法
- 解题思路
- 这段代码的目标是计算一个整数数组(logs)的最大得分,其中得分的计算受正向累积和以及**负分(惩罚)**的影响。具体思路如下:
正向累积和 (dp 数组)
表示从第一个元素开始累加到当前位置的和,但有一个限制:不能超过 100。
如果累积和达到 100,停止继续累加。
负分 (penalty 数组)
表示当前位置的累计惩罚值,它等于前一个位置的惩罚值加上前一个位置的累积和。
最终得分 (result 数组)
通过 dp[i] - penalty[i] 计算当前位置的得分,即正向累积和减去惩罚值。
逻辑流程
初始化数组的第一个位置的 dp 和 result。
遍历数组逐个更新 dp、penalty 和 result,同时检查 dp 是否达到 100,若达到则停止计算。
最终从 result 数组中取出最大值作为结果返回。
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] logs = toIntArray(sc.nextLine());
System.out.println(maxPoints(logs));
}
public static int[] toIntArray(String input) {
String[] parts = input.split(" ");
int[] result = new int[parts.length];
for (int i = 0; i < parts.length; i++) {
result[i] = Integer.parseInt(parts[i]);
}
return result;
}
public static int maxPoints(int[] logs) {
int n = logs.length;
int[] dp = new int[n];
int[] penalty = new int[n];
int[] result = new int[n];
dp[0] = logs[0];
penalty[0] = 0;
result[0] = logs[0];
for (int i = 1; i < n; i++) {
dp[i] = Math.min(100, dp[i - 1] + logs[i]);
penalty[i] = penalty[i - 1] + dp[i - 1];
result[i] = dp[i] - penalty[i];
if (dp[i] >= 100) {
break;
}
}
int maxScore = result[0];
for (int i = 1; i < n; i++) {
maxScore = Math.max(maxScore, result[i]);
}
return maxScore;
}
}
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
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解法
更新中
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
注意:
如果发现代码有用例覆盖不到的情况,欢迎反馈!会在第一时间修正,更新。
解题不易,如对您有帮助,欢迎点赞/收藏
评论记录:
回复评论: