题解 1272: 采药[NOIP2005复赛普及组]

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

P1005 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using&nbsp;namespace&nbsp;st……

P1005 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<malloc.h>#definemaxn100……

P1005 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>inta[1001];intmain(){intt,m;inti,j,k,l;intsj[101],jz[101];scan……

P1005-题解(Java代码)

摘要:经典的01背包问题,使用动态规划。dp[i][j]含义,前i株草药中,j时间内可以获得的最大价值。**dp[i][j]=max{dp[i-1][j],dp[i-1][j-time[i]]+value[……

编写题解 1272: P1005

摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split())ls=[[0,0]]for&nbsp;i&nbsp;in&nbsp;range(n):&a……

P1005 (C++代码)

摘要:解题思路:动态规划注意事项:参考代码:#include<cstdlib>#include<iostream>usingnamespacestd;ints[1001];intma……