题解 1103: 开心的金明

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

筛选

开心的金明 (C++代码)

摘要:动态规划:背包问题 #include<iostream> #include<cstring> #include<algorithm> using namespace std; int dp[……

开心的金明 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double x[30010]; int n,m,i,j;//n金额 M希望购买个数  for(i=0;i<30……

开心的金明 (C语言代码)

摘要:解题思路:01背包,价值加个乘法而己注意事项:参考代码:#include<stdio.h>#include<string.h>int max(long int a,long int b){    re……

开心的金明 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int v[30],p[30];long long x[30001];int main(){ int n,m,i,j,k; scanf(……

开心的金明 (C++代码)

摘要:解题思路:01背包注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int Vmax=300……

开心的金明 (C语言代码)

摘要:解题思路:背包问题注意事项:参考代码:#include<stdio.h>int sum[25][30100]; int max(int a,int b){ if(a>b) { return a; }……

开心的金明 (C语言代码)

摘要:解题思路: 01背包    φ(>ω<*)—b注意事项: 数组初始值要置零,二维数组太耗内存!!|ू•ૅω•́)ᵎᵎᵎ参考代码: #include<stdio.h>#include<string.h>……

开心的金明 (C语言代码)

摘要:解题思路:其实可以用类似深度优先搜索,每个节点就是一件物品,两条路通向下一个节点,即买与不买。参考代码:#include<stdio.h>int money[26];//每件物品的价格和价值分别存放在……