参考代码:
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] ar = new int[n]; int[] dp = new int[1000000]; for (int i = 0; i < n; i++) { ar[i] = sc.nextInt(); } dp[0] = 0; int count = 0; int m = 0; for (int i = 1; i < dp.length; i++) { dp[i] = Integer.MAX_VALUE; for (int j = 0; j < ar.length; j++) { if (i >= ar[j] && dp[i-ar[j]] != Integer.MAX_VALUE){ dp[i] = Math.min(dp[i - ar[j]],dp[i]); } } if (dp[i] == Integer.MAX_VALUE){ m = i; count = 0; }else { count++; if (count > 5000){ System.out.println(m); return; } } } System.out.println(0); } }
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:556 |
P1002 (C语言代码)浏览:1019 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:644 |
【蟠桃记】 (C语言代码)浏览:710 |
上车人数 (C语言代码)浏览:816 |
字符串对比 (C语言代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1334 |
WU-判定字符位置 (C++代码)浏览:1471 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:580 |
A+B for Input-Output Practice (I) (C语言代码)浏览:451 |