参考代码:
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]; for (int i = 0; i < n; i++) { ar[i] = sc.nextInt(); } int[] dp = new int[200000]; dp[0] = 0; int m = 0,count = 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){ count++; m = 0; }else { m++; if (m > 1000){ System.out.println(count); return; } } } System.out.println("INF"); } }
0.0分
1 人评分
C二级辅导-同因查找 (C语言代码)浏览:590 |
C二级辅导-同因查找 (C语言代码)浏览:626 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:998 |
蛇行矩阵 (C语言代码)浏览:792 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:672 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |
分糖果 (C语言代码)浏览:980 |
1392题解(大数相加)浏览:640 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:560 |
C语言程序设计教程(第三版)课后习题1.5 (C++代码)浏览:419 |