解题思路:
注意事项:
参考代码:
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int n = in.nextInt();
int[] arr = new int[n+1];
for(int i=1;i<=n;i++) {
arr[i] = in.nextInt();
}
System.out.println(judge(arr,n));
}
private static int judge(int[] arr,int n) {
int[][] temp = new int[n+1][2];
temp[1][0] = arr[1]; temp[1][1] = 0;
for(int i=2;i<=n;i++) {
temp[i][0] = Integer.min(temp[i-1][0], temp[i-1][1])+arr[i];
temp[i][1] = Integer.min(temp[i-1][0], temp[i-2][0]);
}
return Integer.min(temp[n][0], temp[n][1]);
}
0.0分
3 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:538 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:700 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:1555 |
Pascal三角 (C语言代码)浏览:1252 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1015 |
printf基础练习2 (C语言代码)浏览:796 |
字符逆序 (C语言代码)浏览:645 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:866 |
Pascal三角 (C语言代码)浏览:707 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:594 |